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 32526dc fix typo in use-zipkin-in-dubbo.md and loadbalance.md (#518)
32526dc is described below
commit 32526dcc6d39d321800a7237f812eb734a91dca3
Author: withthewind <[email protected]>
AuthorDate: Tue Nov 5 17:05:54 2019 +0800
fix typo in use-zipkin-in-dubbo.md and loadbalance.md (#518)
---
blog/zh-cn/use-zipkin-in-dubbo.md | 2 +-
docs/zh-cn/source_code_guide/loadbalance.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/blog/zh-cn/use-zipkin-in-dubbo.md
b/blog/zh-cn/use-zipkin-in-dubbo.md
index e23edc8..59ba738 100644
--- a/blog/zh-cn/use-zipkin-in-dubbo.md
+++ b/blog/zh-cn/use-zipkin-in-dubbo.md
@@ -530,7 +530,7 @@ Dubbo 相关的依赖是 Dubbo 本身以及 Zookeeper 客户端,在下面的
完成之后的工程的目录结构如下:
-
+
### 运行
diff --git a/docs/zh-cn/source_code_guide/loadbalance.md
b/docs/zh-cn/source_code_guide/loadbalance.md
index fb44e24..048ec20 100644
--- a/docs/zh-cn/source_code_guide/loadbalance.md
+++ b/docs/zh-cn/source_code_guide/loadbalance.md
@@ -258,7 +258,7 @@ for (int i = 0; i < leastCount; i++) {
int offsetWeight = random.nextInt(totalWeight) + 1;
```
-以上就是 Dubob 2.6.5 对 LeastActiveLoadBalance 的更新,内容不是很多,先分析到这。接下来分析基于一致性 hash 思想的
ConsistentHashLoadBalance。
+以上就是 Dubbo 2.6.5 对 LeastActiveLoadBalance 的更新,内容不是很多,先分析到这。接下来分析基于一致性 hash 思想的
ConsistentHashLoadBalance。
### 2.3 ConsistentHashLoadBalance