aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMaxime Guerreiro <punkeel@me.com>2018-06-20 17:58:53 +0200
committerZHANG Dapeng <zdapeng@google.com>2018-06-20 08:58:53 -0700
commit4df4d06f78724d3fad0d3d25be8dd322b91f0f96 (patch)
tree0de24ba82de9e9bc61a1328db3c586b75a3bf20c /examples
parent2b703342ae9b79439cc51d078f6e18923bbf7b5e (diff)
downloadgrpc-grpc-java-4df4d06f78724d3fad0d3d25be8dd322b91f0f96.tar.gz
examples: Fix comment in HelloWorldClient
This client talks to HelloWorld server and not to the route guide one.
Diffstat (limited to 'examples')
-rw-r--r--examples/src/main/java/io/grpc/examples/helloworld/HelloWorldClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldClient.java b/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldClient.java
index 8e9d31e7e..760f77c3b 100644
--- a/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldClient.java
+++ b/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldClient.java
@@ -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);