You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by wl...@apache.org on 2019/03/11 11:14:31 UTC

[rocketmq] branch develop updated: [RIP-9] Modify the numbering style

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 a974ed2  [RIP-9] Modify the numbering style
     new 0865945  Merge pull request #1070 from ly641921791/develop
a974ed2 is described below

commit a974ed28670468da396b97cd978a64705722cf17
Author: ly <64...@qq.com>
AuthorDate: Sun Mar 10 12:25:44 2019 +0800

    [RIP-9] Modify the numbering style
---
 docs/cn/RocketMQ_Example.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/cn/RocketMQ_Example.md b/docs/cn/RocketMQ_Example.md
index cfd78ea..885b00a 100644
--- a/docs/cn/RocketMQ_Example.md
+++ b/docs/cn/RocketMQ_Example.md
@@ -639,9 +639,9 @@ consumer.start();
 
 事务消息共有三种状态,提交状态、回滚状态、中间状态:
 
-1. TransactionStatus.CommitTransaction: 提交事务,它允许消费者消费此消息。
-2. TransactionStatus.RollbackTransaction: 回滚事务,它代表该消息将被删除,不允许被消费。
-3. TransactionStatus.Unknown: 中间状态,它代表需要检查消息队列来确定状态。
+- TransactionStatus.CommitTransaction: 提交事务,它允许消费者消费此消息。
+- TransactionStatus.RollbackTransaction: 回滚事务,它代表该消息将被删除,不允许被消费。
+- TransactionStatus.Unknown: 中间状态,它代表需要检查消息队列来确定状态。
 
 ### 6.1 发送事务消息样例