From 36533de706999f0f73d0024b26a84ea04b32eb4f Mon Sep 17 00:00:00 2001 From: Joe Shaw Date: Fri, 27 Feb 2015 16:30:00 -0500 Subject: [PATCH] fix server-side -> client-side cut-and-paste-o --- go/gotutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/gotutorial.md b/go/gotutorial.md index 4d5f30375b9..d3d01bff187 100644 --- a/go/gotutorial.md +++ b/go/gotutorial.md @@ -60,7 +60,7 @@ Then you define `rpc` methods inside your service definition, specifying their r rpc ListFeatures(Rectangle) returns (stream Feature) {} ``` -- A *client-side streaming RPC* where the client writes a sequence of messages and sends them to the server, again using a provided stream. Once the client has finished writing the messages, it waits for the server to read them all and return its response. You specify a server-side streaming method by placing the `stream` keyword before the *request* type. +- A *client-side streaming RPC* where the client writes a sequence of messages and sends them to the server, again using a provided stream. Once the client has finished writing the messages, it waits for the server to read them all and return its response. You specify a client-side streaming method by placing the `stream` keyword before the *request* type. ```proto // Accepts a stream of Points on a route being traversed, returning a // RouteSummary when traversal is completed.