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 feb4e2ed9a typo in spring-boot.md (#2461)
feb4e2ed9a is described below
commit feb4e2ed9aef134d8703dff0698e173cf7f1b0aa
Author: Ruslan <[email protected]>
AuthorDate: Wed Mar 29 05:00:10 2023 +0300
typo in spring-boot.md (#2461)
It seems that this line may have been copied from a previous tutorial
because the current tutorial discusses the DemoService interface and the
sayHello method, rather than the GreetingsService interface and the sayHi
method.
---
content/en/docs3-v2/java-sdk/quick-start/spring-boot.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
b/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
index 0fd49906fb..baeccf27d9 100644
--- a/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
+++ b/content/en/docs3-v2/java-sdk/quick-start/spring-boot.md
@@ -411,7 +411,7 @@ public interface DemoService {
}
```
-In `GreetingsService`, the `sayHi` method is defined. Subsequent services
published by the server and services subscribed by the consumer are all
developed around the `GreetingsService` interface.
+In `DemoService`, the `sayHello` method is defined. Subsequent services
published by the server and services subscribed by the consumer are all
developed around the `DemoService` interface.