Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix outdated docstring of some RequestExt functions #524

Merged
merged 1 commit into from
Sep 5, 2022
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