Fix typo in docs (#2080)

This commit is contained in:
z-o-n-n-e 2023-07-10 04:00:01 +08:00 committed by GitHub
parent b80d126137
commit bc8e879d7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
# };