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

[rocketmq] branch develop updated: removed typos and spelling errors from comments in quickstart (#3572)

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

duhengforever pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
     new 16cabf0  removed typos and spelling errors from comments in quickstart (#3572)
16cabf0 is described below

commit 16cabf020cb220b6180954f2963a6548f9d06734
Author: Naman rai <na...@gmail.com>
AuthorDate: Thu Dec 2 13:22:06 2021 +0530

    removed typos and spelling errors from comments in quickstart (#3572)
---
 .../main/java/org/apache/rocketmq/example/quickstart/Consumer.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/example/src/main/java/org/apache/rocketmq/example/quickstart/Consumer.java b/example/src/main/java/org/apache/rocketmq/example/quickstart/Consumer.java
index 6d3b936..07e5724 100644
--- a/example/src/main/java/org/apache/rocketmq/example/quickstart/Consumer.java
+++ b/example/src/main/java/org/apache/rocketmq/example/quickstart/Consumer.java
@@ -50,12 +50,12 @@ public class Consumer {
          */
 
         /*
-         * Specify where to start in case the specified consumer group is a brand new one.
+         * Specify where to start in case the specific consumer group is a brand-new one.
          */
         consumer.setConsumeFromWhere(ConsumeFromWhere.CONSUME_FROM_FIRST_OFFSET);
 
         /*
-         * Subscribe one more more topics to consume.
+         * Subscribe one more topic to consume.
          */
         consumer.subscribe("TopicTest", "*");