This is an automated email from the ASF dual-hosted git repository.
vongosling 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 cf20a26 Fix typo in README
cf20a26 is described below
commit cf20a26c98cd8453caef395e1458ac2da391580a
Author: H <[email protected]>
AuthorDate: Tue May 26 11:04:57 2020 +0800
Fix typo in README
Co-authored-by: haotianfei <[email protected]>
---
docs/cn/RocketMQ_Example.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/cn/RocketMQ_Example.md b/docs/cn/RocketMQ_Example.md
index 9559a60..0cf977e 100644
--- a/docs/cn/RocketMQ_Example.md
+++ b/docs/cn/RocketMQ_Example.md
@@ -706,7 +706,7 @@ public class TransactionProducer {
```
#### 2、实现事务的监听接口
-当发送半消息成功时,我们使用 `executeLocalTransaction`
方法来执行本地事务。它返回前一节中提到的三个事务状态之一。`checkLocalTranscation`
方法用于检查本地事务状态,并回应消息队列的检查请求。它也是返回前一节中提到的三个事务状态之一。
+当发送半消息成功时,我们使用 `executeLocalTransaction`
方法来执行本地事务。它返回前一节中提到的三个事务状态之一。`checkLocalTransaction`
方法用于检查本地事务状态,并回应消息队列的检查请求。它也是返回前一节中提到的三个事务状态之一。
```java
public class TransactionListenerImpl implements TransactionListener {