From c7c73a0d724fd1c38f6817d9d4cddb14b4223c98 Mon Sep 17 00:00:00 2001 From: Ken-Miura Date: Sat, 28 Aug 2021 03:20:59 +0900 Subject: [PATCH] Fix a typo in documentation (#280) --- src/extract/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extract/mod.rs b/src/extract/mod.rs index d2bbd9b5..23df8aa1 100644 --- a/src/extract/mod.rs +++ b/src/extract/mod.rs @@ -1,6 +1,6 @@ //! Types and traits for extracting data from requests. //! -//! A handler function is an async function take takes any number of +//! A handler function is an async function that takes any number of //! "extractors" as arguments. An extractor is a type that implements //! [`FromRequest`](crate::extract::FromRequest). //!