Skip to content
Snippets Groups Projects
Commit 10b31937 authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Fix typo in README commands to compile protos!

Let's fix this before everybody hates me.
parent 76e0fb1d
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ If you don't want to create the symbolic link, you can alternatively copy the bi ...@@ -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: Finally, run _protoc_ with the following flags to generate the client library for your `.proto` files:
```sh ```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. 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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment