Fix typos found by typos-cli (#113)

This commit is contained in:
Jonas Platte 2021-08-04 12:09:39 +02:00 committed by GitHub
parent 4e9b38ddf9
commit 015f6e0c21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 10 deletions

View File

@ -24,7 +24,7 @@ async fn main() {
.handle_error(|error: std::io::Error| {
Ok::<_, std::convert::Infallible>((
StatusCode::INTERNAL_SERVER_ERROR,
format!("Unhandled interal error: {}", error),
format!("Unhandled internal error: {}", error),
))
}),
),

View File

@ -18,7 +18,7 @@ async fn main() {
axum::service::get(ServeDir::new(".").handle_error(|error: std::io::Error| {
Ok::<_, std::convert::Infallible>((
StatusCode::INTERNAL_SERVER_ERROR,
format!("Unhandled interal error: {}", error),
format!("Unhandled internal error: {}", error),
))
})),
)

View File

@ -33,7 +33,7 @@ async fn main() {
.handle_error(|error: std::io::Error| {
Ok::<_, std::convert::Infallible>((
StatusCode::INTERNAL_SERVER_ERROR,
format!("Unhandled interal error: {}", error),
format!("Unhandled internal error: {}", error),
))
}),
),

View File

@ -32,7 +32,7 @@ use std::ops::Deref;
/// # };
/// ```
///
/// If the extension is missing it will reject the request with a `500 Interal
/// If the extension is missing it will reject the request with a `500 Internal
/// Server Error` response.
#[derive(Debug, Clone, Copy)]
pub struct Extension<T>(pub T);

View File

@ -204,7 +204,7 @@ pub trait Handler<B, In>: Sized {
/// This can be used to add additional processing to a request for a single
/// handler.
///
/// Note this differes from [`routing::Layered`](crate::routing::Layered)
/// Note this differs from [`routing::Layered`](crate::routing::Layered)
/// which adds a middleware to a group of routes.
///
/// # Example

View File

@ -450,7 +450,7 @@
//! However when applying middleware, or embedding other tower services, errors
//! might happen. For example [`Timeout`] will return an error if the timeout
//! elapses. By default these errors will be propagated all the way up to hyper
//! where the connection will be closed. If that isn't desireable you can call
//! where the connection will be closed. If that isn't desirable you can call
//! [`handle_error`](handler::Layered::handle_error) to handle errors from
//! adding a middleware to a handler:
//!
@ -497,7 +497,7 @@
//! return `Result<T, E>` where `T` implements
//! [`IntoResponse`](response::IntoResponse).
//!
//! See [`routing::Layered::handle_error`] fo more details.
//! See [`routing::Layered::handle_error`] for more details.
//!
//! ## Applying multiple middleware
//!
@ -646,7 +646,7 @@
//! # Examples
//!
//! The axum repo contains [a number of examples][examples] that show how to put all the
//! pieces togehter.
//! pieces together.
//!
//! # Feature flags
//!
@ -656,7 +656,7 @@
//! The following optional features are available:
//!
//! - `ws`: Enables WebSockets support.
//! - `headers`: Enables extracing typed headers via [`extract::TypedHeader`].
//! - `headers`: Enables extracting typed headers via [`extract::TypedHeader`].
//! - `multipart`: Enables parsing `multipart/form-data` requests with [`extract::Multipart`].
//!
//! [`tower`]: https://crates.io/crates/tower

View File

@ -182,7 +182,7 @@ pub trait RoutingDsl: crate::sealed::Sealed + Sized {
/// This can be used to add additional processing to a request for a group
/// of routes.
///
/// Note this differes from [`handler::Layered`](crate::handler::Layered)
/// Note this differs from [`handler::Layered`](crate::handler::Layered)
/// which adds a middleware to a single handler.
///
/// # Example