File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
aws-smithy-http-server/src/instrumentation
aws-smithy-legacy-http-server/src/instrumentation Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ pub struct Router {
240240}
241241```
242242
243- and enjoys the following ` Service<http::Request> ` implementation:
243+ and has the following ` Service<http::Request> ` implementation:
244244
245245``` rust,ignore
246246impl Service<http::Request> for Router
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ pub use plugin::*;
6969pub use service:: * ;
7070
7171/// A standard interface for taking some component of the HTTP request/response and transforming it into new struct
72- /// which enjoys [`Debug`] or [`Display`]. This allows for polymorphism over formatting approaches.
72+ /// which supports [`Debug`] or [`Display`]. This allows for polymorphism over formatting approaches.
7373pub trait MakeFmt < T > {
7474 /// Target of the `fmt` transformation.
7575 type Target ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ use super::{
1919/// Allows the modification the requests URIs [`Display`](std::fmt::Display) and headers
2020/// [`Debug`] to accommodate sensitivity.
2121///
22- /// This enjoys [`MakeFmt`] for [`&HeaderMap`](HeaderMap) and [`&Uri`](http::Uri).
22+ /// This provides [`MakeFmt`] for [`&HeaderMap`](HeaderMap) and [`&Uri`](http::Uri).
2323#[ derive( Clone ) ]
2424pub struct RequestFmt < Headers , Uri > {
2525 headers : Headers ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ use super::{
1919/// Allows the modification the responses status code [`Display`](std::fmt::Display) and headers
2020/// [`Debug`] to accommodate sensitivity.
2121///
22- /// This enjoys [`MakeFmt`] for [`&HeaderMap`](HeaderMap) and [`StatusCode`](http::StatusCode).
22+ /// This provides [`MakeFmt`] for [`&HeaderMap`](HeaderMap) and [`StatusCode`](http::StatusCode).
2323#[ derive( Clone ) ]
2424pub struct ResponseFmt < Headers , StatusCode > {
2525 headers : Headers ,
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ pub use plugin::*;
6969pub use service:: * ;
7070
7171/// A standard interface for taking some component of the HTTP request/response and transforming it into new struct
72- /// which enjoys [`Debug`] or [`Display`]. This allows for polymorphism over formatting approaches.
72+ /// which supports [`Debug`] or [`Display`]. This allows for polymorphism over formatting approaches.
7373pub trait MakeFmt < T > {
7474 /// Target of the `fmt` transformation.
7575 type Target ;
You can’t perform that action at this time.
0 commit comments