From bc8e879d7b1764772a4147f63ae49f2773b00bbd Mon Sep 17 00:00:00 2001 From: z-o-n-n-e <139063539+z-o-n-n-e@users.noreply.github.com> Date: Mon, 10 Jul 2023 04:00:01 +0800 Subject: [PATCH] Fix typo in docs (#2080) --- axum/src/docs/routing/merge.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/docs/routing/merge.md b/axum/src/docs/routing/merge.md index 0e103c83..b8817513 100644 --- a/axum/src/docs/routing/merge.md +++ b/axum/src/docs/routing/merge.md @@ -31,7 +31,7 @@ let app = Router::new() // Our app now accepts // - GET /users // - GET /users/:id -// - POST /teams +// - GET /teams # async { # hyper::Server::bind(&"".parse().unwrap()).serve(app.into_make_service()).await.unwrap(); # };