From 9dada8e37fafe17bf1d651b88d6933f9b7f799e9 Mon Sep 17 00:00:00 2001 From: Arniu Tseng Date: Tue, 1 Jun 2021 22:55:37 +0800 Subject: [PATCH] Update src/extract.rs Co-authored-by: Igor Aleksanov --- src/extract.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extract.rs b/src/extract.rs index 202212c55..7c2572d43 100644 --- a/src/extract.rs +++ b/src/extract.rs @@ -14,7 +14,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 extract data -/// from the request, for example [`Json`], [`Form`], [`Path`] and so on. +/// from the request. Examples of types that implement this trait are [`Json`], [`Form`], [`Path`]. /// /// An extractor can be customized by injecting the corresponding configuration with: ///