From 6c16469b6699c99df02538a51c9c6c56e70a2bd7 Mon Sep 17 00:00:00 2001 From: LisaFC Date: Tue, 24 Mar 2015 14:33:20 +0000 Subject: [PATCH] Update gotutorial.md Fixed small typo --- go/gotutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/gotutorial.md b/go/gotutorial.md index c81d9f5..4f7cdcc 100644 --- a/go/gotutorial.md +++ b/go/gotutorial.md @@ -117,7 +117,7 @@ This contains: First let's look at how we create a `RouteGuide` server. If you're only interested in creating gRPC clients, you can skip this section and go straight to [Creating the client](#client) (though you might find it interesting anyway!). -There are two parts making our `RouteGuide` service do its job: +There are two parts to making our `RouteGuide` service do its job: - Implementing the service interface generated from our service definition: doing the actual "work" of our service. - Running a gRPC server to listen for requests from clients and dispatch them to the right service implementation.