Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Luca Palmieri <[email protected]>
  • Loading branch information
hlbarber and LukeMathWalker authored Nov 25, 2022
1 parent 9cdb820 commit c68ce6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-http-server/src/plugin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! let plugin = filter_by_operation_name(plugin, |name| name == "GetPokemonSpecies");
//! ```
//!
//! # Construct [`Plugin`] from Operation name closure
//! # Construct a [`Plugin`] from a closure that takes as input the operation name
//!
//! ```
//! # use aws_smithy_http_server::plugin::*;
Expand Down
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-http-server/src/routing/route.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ use tower::{

/// A HTTP [`Service`] representing a single route.
///
/// The construction of [`Route`] from a named HTTP [`Service`] S, erases the type of `S`.
/// The construction of [`Route`] from a named HTTP [`Service`] `S`, erases the type of `S`.
pub struct Route<B = Body> {
service: BoxCloneService<Request<B>, Response<BoxBody>, Infallible>,
}
Expand Down

0 comments on commit c68ce6e

Please sign in to comment.