Update src/extract.rs

Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
This commit is contained in:
Arniu Tseng 2021-06-01 22:33:31 +08:00 committed by GitHub
parent 4e59376d62
commit 4fe14c2e7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ use crate::{dev::Payload, Error, HttpRequest};
/// [`FromRequest`] is one of the most commonly used trait, although some may not realize it.
///
/// A type that implements [`FromRequest`] is called an **extractor** and can be extracted
/// A type that implements [`FromRequest`] is called an **extractor** and can extract data
/// from the request, for example [`Json`], [`Form`], [`Path`] and so on.
///
/// An extractor can be customized by injecting the corresponding configuration with: