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

wlliqipeng 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 b0d12ce  update rocketmq/docs/en/Example_Delay.md, delete some 
punctuation character
     new 576d674  Merge pull request #999 from nothingax/develop
b0d12ce is described below

commit b0d12ce0980bf6863d10a8a0a53ebe6fc9b60535
Author: zhangjianwei <“[email protected]”>
AuthorDate: Sun Mar 3 15:26:47 2019 +0800

    update rocketmq/docs/en/Example_Delay.md, delete some punctuation character
---
 docs/en/Example_Delay.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/en/Example_Delay.md b/docs/en/Example_Delay.md
index 8078525..4de4b74 100644
--- a/docs/en/Example_Delay.md
+++ b/docs/en/Example_Delay.md
@@ -1,6 +1,6 @@
 # Schedule example
 
-### 1.Start consumer to wait for incoming subscribed messages 
+### 1 Start consumer to wait for incoming subscribed messages 
 
 ```java
 import org.apache.rocketmq.client.consumer.DefaultMQPushConsumer;
@@ -35,7 +35,7 @@ public class ScheduledMessageConsumer {
 }
 ```
 
-### 2.Send scheduled messages 
+### 2 Send scheduled messages 
 
 ```java
 import org.apache.rocketmq.client.producer.DefaultMQProducer;
@@ -64,15 +64,15 @@ public class ScheduledMessageProducer {
 }
 ```
 
-### 3.Verification 
+### 3 Verification 
 
 You should see messages are consumed about 10 seconds later than their storing 
time. 
 
-### 4.Use scenarios for scheduled messages
+### 4 Use scenarios for scheduled messages
 
 For example, in e-commerce, if an order is submitted, a delay message can be 
sent, and the status of the order can be checked after 1 hour. If the order is 
still unpaid, the order can be cancelled and the inventory released.
 
-### 5.Restrictions on the use of scheduled messages
+### 5 Restrictions on the use of scheduled messages
 
 ```java 
 // org/apache/rocketmq/store/config/MessageStoreConfig.java

Reply via email to