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 2020/04/22 05:12:07 UTC

[dubbo-website] branch master updated: fix spelling mistake (#576)

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 ebeca5f  fix spelling mistake (#576)
ebeca5f is described below

commit ebeca5f08c1f58ba5e175ab50b386d52ac949d6c
Author: Albumen Kevin <jh...@hotmail.com>
AuthorDate: Wed Apr 22 13:11:58 2020 +0800

    fix spelling mistake (#576)
---
 docs/en-us/admin/install/redis.md                | 2 +-
 docs/en-us/dev/implementation.md                 | 2 +-
 docs/en-us/user/references/registry/redis.md     | 2 +-
 docs/zh-cn/admin/install/redis.md                | 2 +-
 docs/zh-cn/dev/implementation.md                 | 2 +-
 docs/zh-cn/user/references/registry/redis.md     | 2 +-
 docs/zh-cn/user/references/registry/zookeeper.md | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/en-us/admin/install/redis.md b/docs/en-us/admin/install/redis.md
index ce48780..31b60f8 100644
--- a/docs/en-us/admin/install/redis.md
+++ b/docs/en-us/admin/install/redis.md
@@ -4,7 +4,7 @@
 
 Redis [^1] introductions, please refer to: [Redis application center manual](http://dubbo.apache.org/books/dubbo-user-book-en/references/registry/redis.html)。
 
-you need an origin Redis server only, and change the value from `dubbo.registry.addrss` to `redis://127.0.0.1:6379` in `conf/dubbo.properties` of [quick start](http://dubbo.apache.org/books/dubbo-user-book-en/quick-start.html)
+you need an origin Redis server only, and change the value from `dubbo.registry.address` to `redis://127.0.0.1:6379` in `conf/dubbo.properties` of [quick start](http://dubbo.apache.org/books/dubbo-user-book-en/quick-start.html)
 
 Redis configuration center cluster [^2] write multiple server in client side and read from a single server.
 
diff --git a/docs/en-us/dev/implementation.md b/docs/en-us/dev/implementation.md
index 3c7dc47..5443c57 100644
--- a/docs/en-us/dev/implementation.md
+++ b/docs/en-us/dev/implementation.md
@@ -110,7 +110,7 @@ public class DemoClientAction {
     }
  
     public void start() {
-        String hello = demoService.sayHello("world" + i);
+        String hello = demoService.sayHello("world");
     }
 }
 ```
diff --git a/docs/en-us/user/references/registry/redis.md b/docs/en-us/user/references/registry/redis.md
index cb1a722..ac4e16e 100644
--- a/docs/en-us/user/references/registry/redis.md
+++ b/docs/en-us/user/references/registry/redis.md
@@ -65,7 +65,7 @@ A home-brewed service registry server is used in Alibaba instead of redis server
 ## Installation
 
 
-Pls. refer to [redis install manual](http://dubbo.apache.org/en-us/docs/admin/install/redis.html) for how to install a redis based registry server. To set it up, specify `dubbo.registry.addrss` to `redis://127.0.0.1:6379` in `conf/dubbo.properties` for both provider and consumer (you can refer to [quick start](../../quick-start.md)) after install a redis server.
+Pls. refer to [redis install manual](http://dubbo.apache.org/en-us/docs/admin/install/redis.html) for how to install a redis based registry server. To set it up, specify `dubbo.registry.address` to `redis://127.0.0.1:6379` in `conf/dubbo.properties` for both provider and consumer (you can refer to [quick start](../../quick-start.md)) after install a redis server.
 
 
 [^1]: [Redis](http://redis.io) is a high performance KV cache server
diff --git a/docs/zh-cn/admin/install/redis.md b/docs/zh-cn/admin/install/redis.md
index b7b518c..5ccd258 100644
--- a/docs/zh-cn/admin/install/redis.md
+++ b/docs/zh-cn/admin/install/redis.md
@@ -4,7 +4,7 @@
 
 Redis [^1] 使用方式参见: [Redis 注册中心参考手册](http://dubbo.apache.org/books/dubbo-user-book/references/registry/redis.html)。
 
-只需搭一个原生的 Redis 服务器,并将[快速启动](http://dubbo.apache.org/books/dubbo-user-book/quick-start.html)中 Provider 和 Consumer 里的 `conf/dubbo.properties` 中的 `dubbo.registry.addrss` 的值改为 `redis://127.0.0.1:6379` 即可使用。
+只需搭一个原生的 Redis 服务器,并将[快速启动](http://dubbo.apache.org/books/dubbo-user-book/quick-start.html)中 Provider 和 Consumer 里的 `conf/dubbo.properties` 中的 `dubbo.registry.address` 的值改为 `redis://127.0.0.1:6379` 即可使用。
 
 Redis 注册中心集群 [^2] 采用在客户端同时写入多个服务器,读取单个服务器的策略实现。
 
diff --git a/docs/zh-cn/dev/implementation.md b/docs/zh-cn/dev/implementation.md
index 31bc95d..e28ad4e 100644
--- a/docs/zh-cn/dev/implementation.md
+++ b/docs/zh-cn/dev/implementation.md
@@ -110,7 +110,7 @@ public class DemoClientAction {
     }
  
     public void start() {
-        String hello = demoService.sayHello("world" + i);
+        String hello = demoService.sayHello("world");
     }
 }
 ```
diff --git a/docs/zh-cn/user/references/registry/redis.md b/docs/zh-cn/user/references/registry/redis.md
index fdca660..a32d017 100644
--- a/docs/zh-cn/user/references/registry/redis.md
+++ b/docs/zh-cn/user/references/registry/redis.md
@@ -68,7 +68,7 @@
 ## 安装
 
 
-安装方式参见: [Redis安装手册]( ../../../admin/install/redis.md),只需搭一个原生的 Redis 服务器,并将 [Quick Start](../../preface/usage.md) 中 Provider 和 Consumer 里的 `conf/dubbo.properties` 中的 `dubbo.registry.addrss` 的值改为 `redis://127.0.0.1:6379` 即可使用。
+安装方式参见: [Redis安装手册]( ../../../admin/install/redis.md),只需搭一个原生的 Redis 服务器,并将 [Quick Start](../../preface/usage.md) 中 Provider 和 Consumer 里的 `conf/dubbo.properties` 中的 `dubbo.registry.address` 的值改为 `redis://127.0.0.1:6379` 即可使用。
 
 
 [^1]: [Redis](http://redis.io) 是一个高效的 KV 存储服务器
diff --git a/docs/zh-cn/user/references/registry/zookeeper.md b/docs/zh-cn/user/references/registry/zookeeper.md
index e5792ea..9282ec9 100644
--- a/docs/zh-cn/user/references/registry/zookeeper.md
+++ b/docs/zh-cn/user/references/registry/zookeeper.md
@@ -1,6 +1,6 @@
 # zookeeper 注册中心
 
-[Zookeeper](http://zookeeper.apache.org) 是 Apacahe Hadoop 的子项目,是一个树型的目录服务,支持变更推送,适合作为 Dubbo 服务的注册中心,工业强度较高,可用于生产环境,并推荐使用 [^1]。
+[Zookeeper](http://zookeeper.apache.org) 是 Apache Hadoop 的子项目,是一个树型的目录服务,支持变更推送,适合作为 Dubbo 服务的注册中心,工业强度较高,可用于生产环境,并推荐使用 [^1]。
 
 ![/user-guide/images/zookeeper.jpg](../../sources/images/zookeeper.jpg)