You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hu...@apache.org on 2018/07/19 12:53:02 UTC

[incubator-dubbo-docs] branch master updated: Minor corrections to user guide (#35)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 997d0c2  Minor corrections to user guide (#35)
997d0c2 is described below

commit 997d0c232426e4e96273df5a62228446b7856515
Author: Andrea Del Bene <ad...@apache.org>
AuthorDate: Thu Jul 19 14:52:59 2018 +0200

    Minor corrections to user guide (#35)
---
 dubbo-user-book-en/quick-start.md                   | 2 +-
 dubbo-user-book-en/references/registry/zookeeper.md | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dubbo-user-book-en/quick-start.md b/dubbo-user-book-en/quick-start.md
index d2aa2e1..3701406 100644
--- a/dubbo-user-book-en/quick-start.md
+++ b/dubbo-user-book-en/quick-start.md
@@ -129,5 +129,5 @@ public class Consumer {
 
 
 [^1]: The interface needs to be packaged separately, shared by the service provider and the consumer
-[^2]: Hidden realization of service consumer
+[^2]: Hidden implementation of service consumer
 [^3]: IoC injection can also be used
diff --git a/dubbo-user-book-en/references/registry/zookeeper.md b/dubbo-user-book-en/references/registry/zookeeper.md
index ff3eb45..ee2bce3 100644
--- a/dubbo-user-book-en/references/registry/zookeeper.md
+++ b/dubbo-user-book-en/references/registry/zookeeper.md
@@ -1,13 +1,13 @@
 # Zookeeper Registry Server
 
-[Zookeeper](http://zookeeper.apache.org) is the child project of apache hadoop. Since it offers tree-like directory service and supports change notification, it's suitable to use it as dubbo's registry server. It's a field-proven product, therefore it's recommended to use it in the production environment. [^1]
+[Zookeeper](http://zookeeper.apache.org) is a child project of [Apache Hadoop](http://hadoop.apache.org). Since it offers tree-like directory service and supports change notification, it's suitable to use it as dubbo's registry server. It's a field-proven product, therefore it's recommended to use it in the production environment. [^1]
 
 ![/user-guide/images/zookeeper.jpg](../../sources/images/zookeeper.jpg)
 
 Description on registration procedure:
 
 * When service provider boots up: write service URL address under directory `/dubbo/com.foo.BarService/providers`
-* When service consumer boots up: subscribe to `/dubbo/com.foo.BarService/providers` for provider's URL addresses. At the same time, write consumer's URL address under `/dubbo/com.foo.BarService/providers`.
+* When service consumer boots up: subscribe to `/dubbo/com.foo.BarService/providers` for provider's URL addresses. At the same time, write consumer's URL address under `/dubbo/com.foo.BarService/consumers`.
 * When monitor center boots up: subscribe to `/dubbo/com.foo.BarService` for the URL addresses from all providers and consumers.
 
 The following abilities are supported: