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

[dubbo-website] branch asf-site updated: 'fix#389' (#390)

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

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


The following commit(s) were added to refs/heads/asf-site by this push:
     new bb941e7  'fix#389' (#390)
bb941e7 is described below

commit bb941e7afa3ee600f4d5ac4f72db2e385924567a
Author: John Wu <wu...@gmail.com>
AuthorDate: Mon Jun 3 11:11:27 2019 +0800

    'fix#389' (#390)
---
 docs/zh-cn/source_code_guide/refer-service.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/zh-cn/source_code_guide/refer-service.md b/docs/zh-cn/source_code_guide/refer-service.md
index 9213681..3ce1976 100644
--- a/docs/zh-cn/source_code_guide/refer-service.md
+++ b/docs/zh-cn/source_code_guide/refer-service.md
@@ -42,7 +42,7 @@ public synchronized T get() {
 
 ### 3.1 处理配置
 
-Dubbo 提供了丰富的配置,用于调整和优化框架行为,性能等。Dubbo 在引用或导出服务时,首先会对这些配置进行检查和处理,以保证配置到正确性。配置解析逻辑封装在 ReferenceConfig 的 init 方法中,下面进行分析。
+Dubbo 提供了丰富的配置,用于调整和优化框架行为,性能等。Dubbo 在引用或导出服务时,首先会对这些配置进行检查和处理,以保证配置的正确性。配置解析逻辑封装在 ReferenceConfig 的 init 方法中,下面进行分析。
 
 ```java
 private void init() {