From 8f1545adecc86036ed9c8f252edcc099f7016103 Mon Sep 17 00:00:00 2001 From: Andrii Mishkovskyi <548482+mishok13@users.noreply.github.com> Date: Thu, 13 Nov 2025 09:47:58 +0100 Subject: [PATCH] Fix typo in extractors guide (#3554) --- axum/src/docs/extract.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axum/src/docs/extract.md b/axum/src/docs/extract.md index 4659d908..f65b55a8 100644 --- a/axum/src/docs/extract.md +++ b/axum/src/docs/extract.md @@ -606,8 +606,8 @@ For more details, including how to disable this limit, see [`DefaultBodyLimit`]. # Wrapping extractors -If you want write an extractor that generically wraps another extractor (that -may or may not consume the request body) you should implement both +If you want to write an extractor that generically wraps another extractor +(that may or may not consume the request body) you should implement both [`FromRequest`] and [`FromRequestParts`]: ```rust