From b314cd9bc23f6eeb62a1f11a80b95a1720c7816d Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Wed, 22 Mar 2023 17:34:12 +0000 Subject: [PATCH] Fix a small grammatical error in the Extract docs (#1876) --- axum/src/docs/extract.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/docs/extract.md b/axum/src/docs/extract.md index 06af699f..7e9b59f1 100644 --- a/axum/src/docs/extract.md +++ b/axum/src/docs/extract.md @@ -162,7 +162,7 @@ left to right. The request body is an asynchronous stream that can only be consumed once. Therefore you can only have one extractor that consumes the request body. axum -enforces by that requiring such extractors to be the _last_ argument your +enforces this by requiring such extractors to be the _last_ argument your handler takes. For example