You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by li...@apache.org on 2022/07/15 05:02:36 UTC

[rocketmq-apis] branch main updated: Fix typos (#62)

This is an automated email from the ASF dual-hosted git repository.

lizhanhui pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/rocketmq-apis.git


The following commit(s) were added to refs/heads/main by this push:
     new 02d196d  Fix typos (#62)
02d196d is described below

commit 02d196d3511bc310771ffe7392eec2d68d876cf8
Author: Aaron Ai <ya...@alibaba-inc.com>
AuthorDate: Fri Jul 15 13:02:31 2022 +0800

    Fix typos (#62)
---
 apache/rocketmq/v2/definition.proto | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/apache/rocketmq/v2/definition.proto b/apache/rocketmq/v2/definition.proto
index 9d573f8..824bf20 100644
--- a/apache/rocketmq/v2/definition.proto
+++ b/apache/rocketmq/v2/definition.proto
@@ -74,7 +74,7 @@ message ExponentialBackoff {
 }
 
 message CustomizedBackoff {
-  // To support classic backoff strategy which is arbitary defined by end users.
+  // To support classic backoff strategy which is arbitrary defined by end users.
   // Typical values are: `1s 5s 10s 30s 1m 2m 3m 4m 5m 6m 7m 8m 9m 10m 20m 30m 1h 2h`
   repeated google.protobuf.Duration next = 1;
 }
@@ -471,7 +471,7 @@ message Settings {
   // after which the message should be available to consume again.
   //
   // For FIFO messages, the interval should be relatively small because
-  // messages of the same message group would not be readily available utill
+  // messages of the same message group would not be readily available until
   // the prior one depletes its lifecycle.
   optional RetryPolicy backoff_policy = 3;
 
@@ -503,7 +503,7 @@ message Publishing {
   int32 max_body_size = 2;
 
   // When `validate_message_type` flag set `false`, no need to validate message's type
-  // with messageQueue's `accept_message_types` before publising.
+  // with messageQueue's `accept_message_types` before publishing.
   bool validate_message_type = 3;
 }
 
@@ -523,7 +523,7 @@ message Subscription {
   // When FIFO flag is `true`, messages of the same message group are processed
   // in first-in-first-out manner.
   //
-  // Brokers will not deliver further messages of the same group utill prior
+  // Brokers will not deliver further messages of the same group until prior
   // ones are completely acknowledged.
   optional bool fifo = 3;