You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ji...@apache.org on 2020/08/06 03:12:49 UTC

[rocketmq] branch develop updated: [ISSUE #2231] Fix document(cn/msg_trace/user_guide.md) formal error

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

jinrongtong 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 3774a22  [ISSUE #2231] Fix document(cn/msg_trace/user_guide.md) formal error
3774a22 is described below

commit 3774a2271aa0363b41313e27240a1cf27f37411f
Author: Demogorgon314 <wa...@gmail.com>
AuthorDate: Thu Aug 6 11:12:38 2020 +0800

    [ISSUE #2231] Fix document(cn/msg_trace/user_guide.md) formal error
---
 docs/cn/msg_trace/user_guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/cn/msg_trace/user_guide.md b/docs/cn/msg_trace/user_guide.md
index 828d8c0..b644718 100644
--- a/docs/cn/msg_trace/user_guide.md
+++ b/docs/cn/msg_trace/user_guide.md
@@ -50,7 +50,7 @@ RocketMQ的消息轨迹特性支持两种存储轨迹数据的方式:
 如果用户不准备将消息轨迹的数据存储于系统级的默认TraceTopic,也可以自己定义并创建用户级的Topic来保存轨迹(即为创建普通的Topic用于保存消息轨迹数据)。下面一节会介绍Client客户端的接口如何支持用户自定义的TraceTopic。
 
 ## 4. 支持消息轨迹的Client客户端实践
-为了尽可能地减少用户业务系统使用RocketMQ消息轨迹特性的改造工作量,作者在设计时候采用对原来接口增加一个开关参数(**enableMsgTrace**)来实现消息轨迹是否开启;并新增一个自定义参(**customizedTraceTopic**)数来实现用户存储消息轨迹数据至自己创建的用户级Topic。
+为了尽可能地减少用户业务系统使用RocketMQ消息轨迹特性的改造工作量,作者在设计时候采用对原来接口增加一个开关参数(**enableMsgTrace**)来实现消息轨迹是否开启;并新增一个自定义参数(**customizedTraceTopic**)来实现用户存储消息轨迹数据至自己创建的用户级Topic。
 
 ### 4.1 发送消息时开启消息轨迹
 ```