Skip to content

Commit

Permalink
Merge pull request #108 from StephenMal/patch-1
Browse files Browse the repository at this point in the history
Fixed missing third `/` for some functions
  • Loading branch information
gftea authored Sep 24, 2023
2 parents bba6804 + 409ed3c commit 92da1bb
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 92da1bb

Please sign in to comment.