From 6491655a8029f4c21b98171b0eb1961be30d0ee0 Mon Sep 17 00:00:00 2001 From: Benedikt Werner <1benediktwerner@gmail.com> Date: Sat, 2 Dec 2023 18:02:20 +0100 Subject: [PATCH] Fix typo in DefaultBodyLimit docs (#2401) --- axum-core/src/extract/default_body_limit.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axum-core/src/extract/default_body_limit.rs b/axum-core/src/extract/default_body_limit.rs index d5df03b9..2ec82feb 100644 --- a/axum-core/src/extract/default_body_limit.rs +++ b/axum-core/src/extract/default_body_limit.rs @@ -40,8 +40,8 @@ use tower_layer::Layer; /// ``` /// /// In general using `DefaultBodyLimit` is recommended but if you need to use third party -/// extractors and want to sure a limit is also applied there then [`RequestBodyLimit`] should be -/// used. +/// extractors and want to make sure a limit is also applied there then [`RequestBodyLimit`] should +/// be used. /// /// # Different limits for different routes ///