aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-06-12 16:06:37 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-06-12 16:06:37 -0700
commit3ea5cc927c733b8e8bba9f8bbce1f2ac8634ceb9 (patch)
treefde301224558b79628b65aadbb77887c87f43dcb
parentb056066235453b55c7678374c85dde373d03f86f (diff)
Fixed path names in README
-rw-r--r--objective-c/helloworld/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/objective-c/helloworld/README.md b/objective-c/helloworld/README.md
index cb25882867..8f6d0d3a8d 100644
--- a/objective-c/helloworld/README.md
+++ b/objective-c/helloworld/README.md
@@ -17,10 +17,10 @@ following command:
$ git clone https://github.com/grpc/grpc-common.git
```
-Change your current directory to `grpc-common/objective-c/HelloWorld`
+Change your current directory to `grpc-common/objective-c/helloworld`
```sh
-$ cd grpc-common/objective-c/HelloWorld
+$ cd grpc-common/objective-c/helloworld
```
### Try it!
@@ -41,7 +41,7 @@ $ pod install
This might have to compile OpenSSL, which takes around 15 minutes if Cocoapods doesn't have it yet on your computer's cache).
-Finally, open the XCode workspace created by Cocoapods, and run the app. You can check the calling code in `Supporting Files/main.m` and see the results in XCode's log console.
+Finally, open the XCode workspace created by Cocoapods, and run the app. You can check the calling code in `main.m` and see the results in XCode's log console.
The code sends a `HLWHelloRequest` containing the string "Objective-C" to a local server. The server responds with a `HLWHelloResponse`, which contains a string that is then output to the log.