From 5c7c531f98270753fe0c57314049c004045d857e Mon Sep 17 00:00:00 2001 From: Carlo Corradini Date: Tue, 17 Feb 2026 09:52:56 +0100 Subject: [PATCH] fix(docs): typo --- tower-http/src/limit/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tower-http/src/limit/mod.rs b/tower-http/src/limit/mod.rs index 3f2fede3..e8f998f3 100644 --- a/tower-http/src/limit/mod.rs +++ b/tower-http/src/limit/mod.rs @@ -64,7 +64,7 @@ //! and return an appropriate response in such case. //! //! Note that no error will be generated if the body is never read. Similarly, -//! if the body _would be_ to large, but is never consumed beyond the length +//! if the body _would be_ too large, but is never consumed beyond the length //! limit, then no error is generated, and handling of the remaining incoming //! data stream is left to the server implementation as described above. //!