From a1135905215520f6b2eceaca5c8c78bbc6b95889 Mon Sep 17 00:00:00 2001 From: Steven Santos Erenst Date: Wed, 31 May 2017 14:16:25 -0700 Subject: [PATCH] Update references to route_guide.proto to use new directory name (#1270) route_guide.proto used to be in a directory called proto. It was renamed to routeguide but the code/README still referred to the previous directory name. Signed-off-by: Steven Erenst --- examples/route_guide/README.md | 2 +- examples/route_guide/client/client.go | 2 +- examples/route_guide/server/server.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/route_guide/README.md b/examples/route_guide/README.md index a7c0c2b0e539..33fad34f54d0 100644 --- a/examples/route_guide/README.md +++ b/examples/route_guide/README.md @@ -4,7 +4,7 @@ perform unary, client streaming, server streaming and full duplex RPCs. Please refer to [gRPC Basics: Go] (http://www.grpc.io/docs/tutorials/basic/go.html) for more information. -See the definition of the route guide service in proto/route_guide.proto. +See the definition of the route guide service in routeguide/route_guide.proto. # Run the sample code To compile and run the server, assuming you are in the root of the route_guide diff --git a/examples/route_guide/client/client.go b/examples/route_guide/client/client.go index fff6398d4d99..b43420d81efd 100644 --- a/examples/route_guide/client/client.go +++ b/examples/route_guide/client/client.go @@ -34,7 +34,7 @@ // Package main implements a simple gRPC client that demonstrates how to use gRPC-Go libraries // to perform unary, client streaming, server streaming and full duplex RPCs. // -// It interacts with the route guide service whose definition can be found in proto/route_guide.proto. +// It interacts with the route guide service whose definition can be found in routeguide/route_guide.proto. package main import ( diff --git a/examples/route_guide/server/server.go b/examples/route_guide/server/server.go index 5932722bfd79..38073cb5fe6a 100644 --- a/examples/route_guide/server/server.go +++ b/examples/route_guide/server/server.go @@ -34,7 +34,7 @@ // Package main implements a simple gRPC server that demonstrates how to use gRPC-Go libraries // to perform unary, client streaming, server streaming and full duplex RPCs. // -// It implements the route guide service whose definition can be found in proto/route_guide.proto. +// It implements the route guide service whose definition can be found in routeguide/route_guide.proto. package main import (