aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/objective-c/helloworld
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2015-08-27 14:38:38 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2015-08-27 14:38:38 -0700
commit0a268216c2c8e112351b7ed038da04bf50b9eb5a (patch)
treeab93176dac0836e46df5f2b6f54c5a4fba66c823 /examples/objective-c/helloworld
parent20fa6693f3836bf1418176ec78b26feaf51a369d (diff)
replace all grpc-common occurances with examples
Diffstat (limited to 'examples/objective-c/helloworld')
-rw-r--r--examples/objective-c/helloworld/README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/objective-c/helloworld/README.md b/examples/objective-c/helloworld/README.md
index 685339e84a..3b852f857f 100644
--- a/examples/objective-c/helloworld/README.md
+++ b/examples/objective-c/helloworld/README.md
@@ -8,21 +8,21 @@ testing). You can obtain the latter by following [these setup instructions](http
## Hello Objective-C gRPC!
-Here's how to build and run the Objective-C implementation of the [Hello World](https://github.com/grpc/grpc-common/blob/master/protos/helloworld.proto)
-example used in [Getting started](https://github.com/grpc/grpc-common).
+Here's how to build and run the Objective-C implementation of the [Hello World](examples/protos/helloworld.proto)
+example used in [Getting started](https://github.com/grpc/grpc/tree/master/examples).
-The example code for this and our other examples lives in the `grpc-common` GitHub repository. Clone
+The example code for this and our other examples lives in the `examples` directory. Clone
this repository to your local machine by running the following command:
```sh
-$ git clone https://github.com/grpc/grpc-common.git
+$ git clone https://github.com/grpc/grpc.git
```
-Change your current directory to `grpc-common/objective-c/helloworld`
+Change your current directory to `examples/objective-c/helloworld`
```sh
-$ cd grpc-common/objective-c/helloworld
+$ cd examples/objective-c/helloworld
```
### Try it!
@@ -53,4 +53,4 @@ responds with a `HLWHelloResponse`, which contains a string that is then output
## Tutorial
-You can find a more detailed tutorial in [gRPC Basics: Objective-C](https://github.com/grpc/grpc-common/blob/master/objective-c/route_guide/README.md).
+You can find a more detailed tutorial in [gRPC Basics: Objective-C](examples/objective-c/route_guide/README.md).