This is an automated email from the ASF dual-hosted git repository.
albumenj 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 9c38f4df12a fix typo (#3101)
9c38f4df12a is described below
commit 9c38f4df12abc5e2a397e9192e7ce195ace7f87f
Author: StreamAzure <[email protected]>
AuthorDate: Wed Feb 19 10:01:52 2025 +0800
fix typo (#3101)
---
.../overview/mannual/java-sdk/reference-manual/protocol/overview.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/content/zh-cn/overview/mannual/java-sdk/reference-manual/protocol/overview.md
b/content/zh-cn/overview/mannual/java-sdk/reference-manual/protocol/overview.md
index c9c60b3e953..b578a2bc0cd 100644
---
a/content/zh-cn/overview/mannual/java-sdk/reference-manual/protocol/overview.md
+++
b/content/zh-cn/overview/mannual/java-sdk/reference-manual/protocol/overview.md
@@ -12,7 +12,7 @@ weight: 1
Dubbo 作为一款 RPC 框架内置了高效的 RPC 通信协议,帮助解决服务间的编码与通信问题,目前支持的协议包括:
* triple,基于 HTTP/1、HTTP/2 的高性能通信协议,100% 兼容 gRPC,支持 Unary、Streming 等通信模式;支持发布
REST 风格的 HTTP 服务。
* dubbo,基于 TCP 的高性能私有通信协议,缺点是通用性较差,更适合在 Dubbo SDK 间使用;
- * 任意协议扩展,通过扩展 protocol 可以之前任意 RPC 协议,官方生态库提供 JsonRPC、thrift 等支持。
+ * 任意协议扩展,通过扩展 protocol 可以支持任意 RPC 协议,官方生态库提供 JsonRPC、thrift 等支持。
## 协议选型