From 2506e9396a08d91a7fbb97b2009809b813fa29aa Mon Sep 17 00:00:00 2001 From: Xiao Hang Date: Wed, 27 Jul 2016 16:46:15 -0700 Subject: [PATCH] Fix examples README --- examples/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/README.md b/examples/README.md index ff1e547959..fcf45e7cfa 100644 --- a/examples/README.md +++ b/examples/README.md @@ -13,19 +13,19 @@ $ ./gradlew installDist This creates the scripts `hello-world-server`, `hello-world-client`, `route-guide-server`, and `route-guide-client` in the -`build/install/grpc-examples/bin/` directory that run the examples. Each +`build/install/examples/bin/` directory that run the examples. Each example requires the server to be running before starting the client. For example, to try the hello world example first run: ``` -$ ./build/install/grpc-examples/bin/hello-world-server +$ ./build/install/examples/bin/hello-world-server ``` And in a different terminal window run: ``` -$ ./build/install/grpc-examples/bin/hello-world-client +$ ./build/install/examples/bin/hello-world-client ``` That's it!