diff options
author | LisaFC <LisaFC@users.noreply.github.com> | 2015-02-25 11:42:43 +0000 |
---|---|---|
committer | LisaFC <LisaFC@users.noreply.github.com> | 2015-02-25 11:42:43 +0000 |
commit | b756da3bfd4612f915ea1c1aa57354c06d6547e6 (patch) | |
tree | c291002a886d8b1861b8474c5826f0e640cd331c /cpp | |
parent | 78c9e77a4adeff309ad1380aa2c9bf892889b53f (diff) |
Update cpptutorial.md
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/cpptutorial.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/cpptutorial.md b/cpp/cpptutorial.md index 613af1ae7c..65fd5c7eec 100644 --- a/cpp/cpptutorial.md +++ b/cpp/cpptutorial.md @@ -16,8 +16,6 @@ Our example is a simple route mapping application that lets clients get informat With gRPC we can define our service once in a .proto file and implement clients and servers in any of gRPC's supported languages, which in turn can be run in environments ranging from servers inside Google to your own tablet - all the complexity of communication between different languages and environments is handled for you by gRPC. We also get all the advantages of working with protocol buffers, including efficient serialization, a simple IDL, and easy interface updating. -[possibly insert more advantages here] - ## Example code and setup The example code for our tutorial is in [grpc/grpc-common/cpp/route_guide](https://github.com/grpc/grpc-common/tree/master/cpp/route_guide). To download the example, clone the `grpc-common` repository by running the following command: |