You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by wa...@apache.org on 2019/10/04 12:49:51 UTC

[dubbo] branch master updated: README: Fix typo in example code (#5136)

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

wangxin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new 041aa39  README: Fix typo in example code (#5136)
041aa39 is described below

commit 041aa39c825cc21bf16fd380890c4fea2e509caa
Author: Dinesh Bolkensteyn <di...@dinsoft.net>
AuthorDate: Fri Oct 4 14:49:36 2019 +0200

    README: Fix typo in example code (#5136)
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 8a855eb..e75a264 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ There's a [README](https://github.com/apache/dubbo-samples/tree/master/dubbo-sam
 package org.apache.dubbo.samples.api;
 
 public interface GreetingService {
-    String sayHello(String name);
+    String sayHi(String name);
 }
 ```