aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2015-05-21 17:17:51 -0700
committerGravatar Michael Lumish <mlumish@google.com>2015-05-21 17:17:51 -0700
commit35d9fcffc43024a960588568f4363639f19d07bd (patch)
tree4b6ac94a7d0860e9f779b73f842ad83ad7bb9c95 /src/objective-c
parente503dcf1469e3ea27278e31c23f98ecadf3fb170 (diff)
parent10b31937289c751761aa9872f85cb05bb083b6ae (diff)
Merge pull request #1715 from jcanizales/fixes-evil-typo
Fix typo in README commands to compile protos!
Diffstat (limited to 'src/objective-c')
-rw-r--r--src/objective-c/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/README.md b/src/objective-c/README.md
index cdba3777dd..49d7f43882 100644
--- a/src/objective-c/README.md
+++ b/src/objective-c/README.md
@@ -22,7 +22,7 @@ If you don't want to create the symbolic link, you can alternatively copy the bi
Finally, run _protoc_ with the following flags to generate the client library for your `.proto` files:
```sh
-protoc --objc_out=. --objcrpc_out=. *.proto
+protoc --objc_out=. --objcgrpc_out=. *.proto
```
This will generate a pair of `.pbobjc.h`/`.pbobjc.m` files for each `.proto` file, with the messages and enums defined in them. And a pair of `.pbrpc.h`/`.pbrpc.m` files for each `.proto` file with services defined. The latter contains the code to make remote calls to the specified API.