aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Lisa Carey <lcarey@google.com>2015-02-13 16:40:23 +0000
committerGravatar Lisa Carey <lcarey@google.com>2015-02-13 16:40:23 +0000
commitbdcda72cec23554d5ef1dd5695de9e97e8bb3235 (patch)
tree2f38ef20d33022f8ca65277e07e3788cc5e2db02
parent461780145938e452e113f4eb951c3a28ff69b214 (diff)
Fixed typo
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 592e1663f7..413f5008a2 100644
--- a/README.md
+++ b/README.md
@@ -10,9 +10,9 @@ Hello World example. More documentation is coming soon!
## What is gRPC?
-gRPC is It enables communication between clients and servers using any combination of gRPC's supported languages, helping you to build distributed applications and services.
+gRPC enables communication between clients and servers using any combination of gRPC's supported languages, helping you to build distributed applications and services.
-In gRPC, like
+In gRPC, like other RPC systems...
### Plays well with Protocol Buffers
@@ -46,7 +46,7 @@ Now that you know a bit more about gRPC, the easiest way to see how it
works is to look at a simple example. Our Hello World walks you through the
construction of a simple gRPC client-server application, showing you how to:
-- Create a protobuf schema that defines a simple RPC service with a single
+- Create a protocol buffers schema that defines a simple RPC service with a single
Hello World method.
- Create a Java server that implements the schema interface.
- Create a Java client that accesses the Java server.