aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/server_reflection_tutorial.md
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-09-13 11:41:49 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-09-13 11:41:49 -0700
commit3bf43dd311561670414ee7e1d7167c893a384d1a (patch)
tree7e8c89db26092d4ed0da79afc308104b38a3403e /doc/server_reflection_tutorial.md
parentdcc16b40fb618b410074f033c0a3aca8d18953e6 (diff)
Address review comments
Diffstat (limited to 'doc/server_reflection_tutorial.md')
-rw-r--r--doc/server_reflection_tutorial.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/server_reflection_tutorial.md b/doc/server_reflection_tutorial.md
index 5417ae0bd5..2b8f5ea8f6 100644
--- a/doc/server_reflection_tutorial.md
+++ b/doc/server_reflection_tutorial.md
@@ -2,9 +2,9 @@
gRPC Server Reflection provides information about publicly-accessible gRPC
services on a server, and assists clients at runtime to construct RPC
-requests and responses without precompiled service information. It has been
-supported by gRPC CLI, which can be used to introspect server protos and
-send/receive test RPCs.
+requests and responses without precompiled service information. It is used by
+gRPC CLI, which can be used to introspect server protos and send/receive test
+RPCs.
## Enable Server Reflection
@@ -23,8 +23,8 @@ enabling c++ server reflection on Linux and MacOS.
## Test services using Server Reflection
-gRPC Server Reflection is supported by gRPC CLI. After enabling Server
-Reflection in a server application, you can use gRPC CLI to test its services.
+After enabling Server Reflection in a server application, you can use gRPC CLI
+to test its services.
Instructions on how to use gRPC CLI can be found at
[command_line_tool.md](command_line_tool.md), or using `grpc_cli help` command.