From 805463c2efc3324638137c8e85d94be7e0f51031 Mon Sep 17 00:00:00 2001 From: valkyrie_pilot Date: Sat, 27 Aug 2022 02:01:23 -0600 Subject: [PATCH] Fix docs typo (#1334) --- axum/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/lib.rs b/axum/src/lib.rs index f3edba2693..d04d5805ca 100644 --- a/axum/src/lib.rs +++ b/axum/src/lib.rs @@ -167,7 +167,7 @@ //! It is common to share some state between handlers for example to share a //! pool of database connections or clients to other services. //! -//! The two most common ways of doing that are: +//! The three most common ways of doing that are: //! - Using the [`State`] extractor. //! - Using request extensions //! - Using closure captures