examples: Fix comment in HelloWorldClient

This client talks to HelloWorld server and not to the route guide one.
This commit is contained in:
Maxime Guerreiro 2018-06-20 17:58:53 +02:00 committed by ZHANG Dapeng
parent 2b703342ae
commit 4df4d06f78
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public class HelloWorldClient {
.build());
}
/** Construct client for accessing RouteGuide server using the existing channel. */
/** Construct client for accessing HelloWorld server using the existing channel. */
HelloWorldClient(ManagedChannel channel) {
this.channel = channel;
blockingStub = GreeterGrpc.newBlockingStub(channel);