From 0990e27964592928631c8c4ca77a6a6e0fa300f4 Mon Sep 17 00:00:00 2001 From: Kelly Thomas Kline <kellytk@sw-e.org> Date: Wed, 10 Nov 2021 04:13:47 -0800 Subject: [PATCH] Correct grammar (#492) --- axum/src/handler/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/handler/mod.rs b/axum/src/handler/mod.rs index 80b9fe55..d41cdab9 100644 --- a/axum/src/handler/mod.rs +++ b/axum/src/handler/mod.rs @@ -35,7 +35,7 @@ //! //! ## Debugging handler type errors //! -//! For a function to used as a handler it must implement the [`Handler`] trait. +//! For a function to be used as a handler it must implement the [`Handler`] trait. //! axum provides blanket implementations for functions that: //! //! - Are `async fn`s.