Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lambda-http/src/ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ pub trait RequestExt {
/// will yield an empty `QueryMap`.
fn query_string_parameters(&self) -> QueryMap;

/// Configures instance with query string parameters under #[cfg(test)] configurations
/// Configures instance with query string parameters
///
/// This is intended for use in mock testing contexts.
fn with_query_string_parameters<Q>(self, parameters: Q) -> Self
Expand All @@ -140,7 +140,7 @@ pub trait RequestExt {
/// These will always be empty for ALB triggered requests
fn path_parameters(&self) -> QueryMap;

/// Configures instance with path parameters under #[cfg(test)] configurations
/// Configures instance with path parameters
///
/// This is intended for use in mock testing contexts.
fn with_path_parameters<P>(self, parameters: P) -> Self
Expand Down