1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-04-26 13:56:22 +02:00

Fix a typo in documentation ()

This commit is contained in:
Ken-Miura 2021-08-28 03:20:59 +09:00 committed by GitHub
parent e41bac7f39
commit c7c73a0d72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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).
//!