aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Tim Emiola <temiola@google.com>2015-02-18 17:43:41 -0800
committerGravatar Tim Emiola <temiola@google.com>2015-02-18 17:43:41 -0800
commita16a4d551f9035bd720107732ab71bb9bf337dda (patch)
treebf05bb1c84068d6767505165db6ab7b2bfd67900 /README.md
parent2604848108f26d4b4a38ca9316db376d5e470634 (diff)
Complete the change s/Greetings/Greeter
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 1203465660..71f3004c71 100644
--- a/README.md
+++ b/README.md
@@ -369,7 +369,7 @@ We'll look at using a client to access the server in the next section.
Client-side gRPC is pretty simple. In this step, we'll use the generated code
to write a simple client that can access the `Greeter` server we created
in the [previous section](#server). You can see the complete client code in
-[GreetingClient.java](java/src/main/java/ex/grpc/GreetingsClient.java).
+[GreeterClient.java](java/src/main/java/ex/grpc/GreeterClient.java).
Again, we're not going to go into much detail about how to implement a client
- we'll leave that for the tutorial.
@@ -462,13 +462,13 @@ We've added simple shell scripts to simplifying running the examples. Now
that they are built, you can run the server with:
```sh
-$ ./run_greetings_server.sh
+$ ./run_greeter_server.sh
```
and in another terminal window confirm that it receives a message.
```sh
-$ ./run_greetings_client.sh
+$ ./run_greeter_client.sh
```
### Adding another client