Fix typo in extractors guide (#3554)

This commit is contained in:
Andrii Mishkovskyi
2025-11-13 09:47:58 +01:00
committed by GitHub
parent 3ef6c5d183
commit 830a114172
+2 -2
View File
@@ -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