chore: Fix typo in middleware.md (#700)

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