README: Fix typo in example code (#5136)

This commit is contained in:
Dinesh Bolkensteyn 2019-10-04 14:49:36 +02:00 committed by Xin Wang
parent 4e101490b2
commit 041aa39c82
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
```