1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-03-22 23:15:31 +01:00

chore: Fix typo in middleware.md ()

This commit is contained in:
Dr. David A. Kunz 2022-01-11 23:56:33 +01:00 committed by GitHub
parent d181867355
commit 5512ebcd23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ For more details on that see
## Applying multiple middleware
Its recommended to use [`tower::ServiceBuilder`] to apply multiple middleware at
It's recommended to use [`tower::ServiceBuilder`] to apply multiple middleware at
once, instead of calling [`Router::layer`] repeatedly:
```rust