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 2ad6fe19693 Update spring-boot.md (#2819)
2ad6fe19693 is described below
commit 2ad6fe196935255f702f1c6d5a2dae89be0e6c2f
Author: weloe <[email protected]>
AuthorDate: Fri Sep 29 20:34:02 2023 +0800
Update spring-boot.md (#2819)
* Update spring-boot.md
* Update spring-boot.md
---
content/zh-cn/overview/quickstart/java/spring-boot.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/zh-cn/overview/quickstart/java/spring-boot.md
b/content/zh-cn/overview/quickstart/java/spring-boot.md
index 0531ab567d7..e1187518c88 100644
--- a/content/zh-cn/overview/quickstart/java/spring-boot.md
+++ b/content/zh-cn/overview/quickstart/java/spring-boot.md
@@ -366,7 +366,7 @@ public interface DemoService {
}
```
-在 `GreetingsService` 中,定义了 `sayHi` 这个方法。后续服务端发布的服务,消费端订阅的服务都是围绕着
`GreetingsService` 接口展开的。
+在 `DemoService` 中,定义了 `sayHello` 这个方法。后续服务端发布的服务,消费端订阅的服务都是围绕着 `DemoService`
接口展开的。
### 5. 定义服务端的实现