1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-04-26 13:56:22 +02:00

Fix typo in main.rs ()

This commit is contained in:
silvioprog 2021-10-12 15:20:27 -03:00 committed by GitHub
parent ce5834ab80
commit 8ca5538405
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ struct User {
username: String,
}
// We define our own `Json` extactor that customizes the error from `axum::Json`
// We define our own `Json` extractor that customizes the error from `axum::Json`
struct Json<T>(T);
#[async_trait]