Skip to content

Commit de4e531

Browse files
committed
address comments
1 parent fd7683c commit de4e531

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

CONCEPTS.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ combination of the supported languages.
99

1010
## Interface
1111

12-
Developers using gRPC start with the description of an RPC service (a collection
13-
of methods), and generate client and server side interfaces. The server implements
12+
Developers using gRPC start with a language agnostic description of an RPC service (a collection
13+
of methods). From this description, gRPC will generate client and server side interfaces
14+
in any of the supported languages. The server implements
1415
the service interface, which can be remotely invoked by the client interface.
1516

1617
By default, gRPC uses [Protocol Buffers](https://github.com/google/protobuf) as the
@@ -41,7 +42,7 @@ asynchronous flavors.
4142

4243
gRPC supports streaming semantics, where either the client or the server (or both)
4344
send a stream of messages on a single RPC call. The most general case is
44-
Bidirectional Streaming where a single gRPC call establishes a stream where both
45+
Bidirectional Streaming where a single gRPC call establishes a stream in which both
4546
the client and the server can send a stream of messages to each other. The streamed
4647
messages are delivered in the order they were sent.
4748

0 commit comments

Comments
 (0)