aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/cpp/keyvaluestore/server.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cpp/keyvaluestore/server.cc')
-rw-r--r--examples/cpp/keyvaluestore/server.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cpp/keyvaluestore/server.cc b/examples/cpp/keyvaluestore/server.cc
index 8dc8752eda..515a1ba4c9 100644
--- a/examples/cpp/keyvaluestore/server.cc
+++ b/examples/cpp/keyvaluestore/server.cc
@@ -81,7 +81,7 @@ void RunServer() {
// Listen on the given address without any authentication mechanism.
builder.AddListeningPort(server_address, grpc::InsecureServerCredentials());
// Register "service" as the instance through which we'll communicate with
- // clients. In this case it corresponds to an *synchronous* service.
+ // clients. In this case, it corresponds to an *synchronous* service.
builder.RegisterService(&service);
// Finally assemble the server.
std::unique_ptr<Server> server(builder.BuildAndStart());