diff --git a/axum/src/docs/extract.md b/axum/src/docs/extract.md index f7669f44..384b233d 100644 --- a/axum/src/docs/extract.md +++ b/axum/src/docs/extract.md @@ -569,7 +569,7 @@ let app = Router::new().route( # Accessing other extractors in `FromRequest` or `FromRequestParts` implementations -When defining custom extractors you often need to access another extractors +When defining custom extractors you often need to access another extractor in your implementation. ```rust