You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by li...@apache.org on 2019/07/15 05:46:44 UTC

[dubbo-website] branch master updated: Fix classpath didn't update#409 (#431)

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

lixiaojie 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 9c5ca0e  Fix classpath didn't update#409 (#431)
9c5ca0e is described below

commit 9c5ca0e72a1903a4a7df0c12becf6933af8ef911
Author: 天璇 <ca...@126.com>
AuthorDate: Mon Jul 15 13:46:39 2019 +0800

    Fix classpath didn't update#409 (#431)
    
    correct the package name of Protocol
---
 docs/en-us/dev/impls/protocol.md | 12 ++++++------
 docs/zh-cn/dev/impls/protocol.md | 12 ++++++------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/docs/en-us/dev/impls/protocol.md b/docs/en-us/dev/impls/protocol.md
index 47ecd67..d3f96e6 100644
--- a/docs/en-us/dev/impls/protocol.md
+++ b/docs/en-us/dev/impls/protocol.md
@@ -65,11 +65,11 @@ public interface Protocol {
 
 ## Existing Protocol
 
-* `org.apache.dubbo.rpc.injvm.InjvmProtocol`
-* `org.apache.dubbo.rpc.dubbo.DubboProtocol`
-* `org.apache.dubbo.rpc.rmi.RmiProtocol`
-* `org.apache.dubbo.rpc.http.HttpProtocol`
-* `org.apache.dubbo.rpc.http.hessian.HessianProtocol`
+* `org.apache.dubbo.rpc.protocol.injvm.InjvmProtocol`
+* `org.apache.dubbo.rpc.protocol.dubbo.DubboProtocol`
+* `org.apache.dubbo.rpc.protocol.rmi.RmiProtocol`
+* `org.apache.dubbo.rpc.protocol.http.HttpProtocol`
+* `org.apache.dubbo.rpc.protocol.http.hessian.HessianProtocol`
 
 ## Extension Guide
 
@@ -147,4 +147,4 @@ META-INF/dubbo/org.apache.dubbo.rpc.Protocol:
 
 ```properties
 xxx=com.xxx.XxxProtocol
-```
\ No newline at end of file
+```
diff --git a/docs/zh-cn/dev/impls/protocol.md b/docs/zh-cn/dev/impls/protocol.md
index b7c8ebd..0006b39 100644
--- a/docs/zh-cn/dev/impls/protocol.md
+++ b/docs/zh-cn/dev/impls/protocol.md
@@ -65,11 +65,11 @@ public interface Protocol {
 
 ## 已知扩展
 
-* `org.apache.dubbo.rpc.injvm.InjvmProtocol`
-* `org.apache.dubbo.rpc.dubbo.DubboProtocol`
-* `org.apache.dubbo.rpc.rmi.RmiProtocol`
-* `org.apache.dubbo.rpc.http.HttpProtocol`
-* `org.apache.dubbo.rpc.http.hessian.HessianProtocol`
+* `org.apache.dubbo.rpc.protocol.injvm.InjvmProtocol`
+* `org.apache.dubbo.rpc.protocol.dubbo.DubboProtocol`
+* `org.apache.dubbo.rpc.protocol.rmi.RmiProtocol`
+* `org.apache.dubbo.rpc.protocol.http.HttpProtocol`
+* `org.apache.dubbo.rpc.protocol.http.hessian.HessianProtocol`
 
 ## 扩展示例
 
@@ -148,4 +148,4 @@ META-INF/dubbo/org.apache.dubbo.rpc.Protocol:
 
 ```properties
 xxx=com.xxx.XxxProtocol
-```
\ No newline at end of file
+```