From 946d8c32530ae301bf26928ab22090b33366a748 Mon Sep 17 00:00:00 2001 From: J <124119483+escwxyz@users.noreply.github.com> Date: Sun, 9 Apr 2023 08:08:58 +0200 Subject: [PATCH] Fix a typo inside handlers_intro.md (#1919) --- axum/src/docs/handlers_intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/docs/handlers_intro.md b/axum/src/docs/handlers_intro.md index 7697e127..4b42d420 100644 --- a/axum/src/docs/handlers_intro.md +++ b/axum/src/docs/handlers_intro.md @@ -2,7 +2,7 @@ In axum a "handler" is an async function that accepts zero or more ["extractors"](crate::extract) as arguments and returns something that can be converted [into a response](crate::response). -Handlers is where your application logic lives and axum applications are built +Handlers are where your application logic lives and axum applications are built by routing between handlers. [`debug_handler`]: https://docs.rs/axum-macros/latest/axum_macros/attr.debug_handler.html