Skip to content

Commit

Permalink
Fix Code Style issues for doc-comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andras-pinter committed Jul 27, 2024
1 parent 5544e05 commit e662682
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sdk/messaging_servicebus/src/service_bus/queue_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl QueueClient {
/// Non-destructively read a message
///
/// * `timeout` : Sets the maximum duration for the HTTP connection when receiving a message.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
///
/// Note: This function does not return the delete location
/// of the message, so, after reading, you will lose
Expand All @@ -107,7 +107,7 @@ impl QueueClient {
/// Non-destructively read a message but track it
///
/// * `timeout` : Sets the maximum duration for the HTTP connection when receiving a message.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
///
/// Note: This function returns a `PeekLockResponse`
/// that contains a helper `delete_message` function.
Expand Down
4 changes: 2 additions & 2 deletions sdk/messaging_servicebus/src/service_bus/topic_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl SubscriptionReceiver {
/// Non-destructively read a message
///
/// * `timeout` : Sets the maximum duration for the HTTP connection when receiving a message.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
///
/// Note: This function does not return the delete location
/// of the message, so, after reading, you will lose
Expand All @@ -143,7 +143,7 @@ impl SubscriptionReceiver {
/// Non-destructively read a message but track it
///
/// * `timeout` : Sets the maximum duration for the HTTP connection when receiving a message.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
/// If no message is received within this time, an empty 204 HTTP response will be returned.
///
/// Note: This function returns a `PeekLockResponse`
/// that contains a helper `delete_message` function.
Expand Down

0 comments on commit e662682

Please sign in to comment.