Fix typo in extractors guide (#3554)

This commit is contained in:
Andrii Mishkovskyi
2025-11-14 20:42:06 +01:00
committed by Jonas Platte
parent 4fc3faa0b4
commit 8f1545adec
+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