diff --git a/axum/src/docs/routing/merge.md b/axum/src/docs/routing/merge.md index 0e103c83ca..b88175130b 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(); # };