diff --git a/rust-runtime/aws-smithy-http-server/src/routing/lambda_handler.rs b/rust-runtime/aws-smithy-http-server/src/routing/lambda_handler.rs index 52d8613428c..b338062782a 100644 --- a/rust-runtime/aws-smithy-http-server/src/routing/lambda_handler.rs +++ b/rust-runtime/aws-smithy-http-server/src/routing/lambda_handler.rs @@ -13,9 +13,10 @@ use tower::Service; type HyperRequest = http::Request; -/// A [`MakeService`] that produces AWS Lambda compliant services. +/// A [`Service`] that takes a `lambda_http::Request` and converts +/// it to `http::Request`. /// -/// [`MakeService`]: tower::make::MakeService +/// [`Service`]: tower::Service #[derive(Debug, Clone)] pub struct LambdaHandler { service: S,