diff options
author | David Garcia Quintas <dgq@google.com> | 2016-08-11 16:15:41 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-08-11 16:15:41 -0700 |
commit | c61b1d3cd0e14c672741a8d3b27dedb421682abd (patch) | |
tree | e08345c5faeeda4c0dcfc62c9a49f3e86a8646a7 /examples/cpp | |
parent | 5804745aed0e6513706ad0ea0108ed6305003eba (diff) |
s/makefile/Makefile
Diffstat (limited to 'examples/cpp')
-rw-r--r-- | examples/cpp/cpptutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cpp/cpptutorial.md b/examples/cpp/cpptutorial.md index de7e4b2636..ae84aba916 100644 --- a/examples/cpp/cpptutorial.md +++ b/examples/cpp/cpptutorial.md @@ -127,7 +127,7 @@ Next we need to generate the gRPC client and server interfaces from our `.proto` service definition. We do this using the protocol buffer compiler `protoc` with a special gRPC C++ plugin. -For simplicity, we've provided a [makefile](route_guide/Makefile) that runs +For simplicity, we've provided a [Makefile](route_guide/Makefile) that runs `protoc` for you with the appropriate plugin, input, and output (if you want to run this yourself, make sure you've installed protoc and followed the gRPC code [installation instructions](../../INSTALL.md) first): |