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

Fixed missing third / for some functions #108

Merged
merged 1 commit into from
Sep 24, 2023
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
8 changes: 4 additions & 4 deletions amqprs/src/api/channel/queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl QueueDeclareArguments {
}

/// Arguments of a durable, non-exclusive, non-autodelete
// queue. Usually a good fit for queues with well-known names.
/// queue. Usually a good fit for queues with well-known names.
pub fn durable_client_named(queue: &str) -> Self {
#[cfg(feature = "compliance_assert")]
assert_queue_name(queue);
Expand All @@ -81,7 +81,7 @@ impl QueueDeclareArguments {
}

/// Arguments of an exclusive, transient, server-named
// queue. Usually a good fit for queues that store client-specific transient state.
/// queue. Usually a good fit for queues that store client-specific transient state.
pub fn exclusive_server_named() -> Self {
Self {
queue: "".to_owned(),
Expand All @@ -95,8 +95,8 @@ impl QueueDeclareArguments {
}

/// Arguments of an autodelete, transient, client-named
// queue. Usually a good fit for queues that store client-specific transient state
// when server-named queues are not an option.
/// queue. Usually a good fit for queues that store client-specific transient state
/// when server-named queues are not an option.
pub fn transient_autodelete(queue: &str) -> Self {
Self {
queue: queue.to_owned(),
Expand Down