summaryrefslogtreecommitdiff
path: root/axum-core/src/response/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'axum-core/src/response/mod.rs')
-rw-r--r--axum-core/src/response/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/axum-core/src/response/mod.rs b/axum-core/src/response/mod.rs
index 9f782e31..69c14870 100644
--- a/axum-core/src/response/mod.rs
+++ b/axum-core/src/response/mod.rs
@@ -25,7 +25,7 @@ mod headers;
pub use self::headers::Headers;
/// Type alias for [`http::Response`] whose body type defaults to [`BoxBody`], the most common body
-/// type used with Axum.
+/// type used with axum.
pub type Response<T = BoxBody> = http::Response<T>;
/// Trait for generating responses.