Skip to content

Commit

Permalink
Merge pull request grpc#473 from eduherminio/patch-1
Browse files Browse the repository at this point in the history
Fix typo (missing comma) in C++ Quick Start guide
  • Loading branch information
vjpai authored Mar 21, 2017
2 parents 29fc144 + fa09d3d commit 6b1a87c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quickstart/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class GreeterServiceImpl final : public Greeter::Service {
// ... (pre-existing code)
}
Status SayHelloAgain(ServerContext* context, const HelloRequest* request
Status SayHelloAgain(ServerContext* context, const HelloRequest* request,
HelloReply* reply) override {
std::string prefix("Hello again ");
reply->set_message(prefix + request->name());
Expand Down

0 comments on commit 6b1a87c

Please # to comment.