You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hy...@apache.org on 2019/10/21 09:25:58 UTC

[dubbo-website] branch master updated: [Dubbo-498] fix description error in cluster.md (#499)

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

hyunkun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new a29f0e1  [Dubbo-498] fix description error in cluster.md  (#499)
a29f0e1 is described below

commit a29f0e198139f520e967c7776c8ca1a30bb9a56f
Author: LiosWong <di...@163.com>
AuthorDate: Mon Oct 21 17:25:49 2019 +0800

    [Dubbo-498] fix description error in cluster.md  (#499)
---
 docs/zh-cn/source_code_guide/cluster.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/zh-cn/source_code_guide/cluster.md b/docs/zh-cn/source_code_guide/cluster.md
index 36ebb4e..6fe7a95 100644
--- a/docs/zh-cn/source_code_guide/cluster.md
+++ b/docs/zh-cn/source_code_guide/cluster.md
@@ -327,7 +327,7 @@ reselect 方法总结下来其实只做了两件事情,第一是查找可用
 
 #### 3.2.2 FailbackClusterInvoker
 
-FailbackClusterInvoker 会在调用失败后,返回一个空结果给服务提供者。并通过定时任务对失败的调用进行重传,适合执行消息通知等操作。下面来看一下它的实现逻辑。
+FailbackClusterInvoker 会在调用失败后,返回一个空结果给服务消费者。并通过定时任务对失败的调用进行重传,适合执行消息通知等操作。下面来看一下它的实现逻辑。
 
 ```java
 public class FailbackClusterInvoker<T> extends AbstractClusterInvoker<T> {