diff --git a/examples/route_guide/README.md b/examples/route_guide/README.md index a7c0c2b0e..33fad34f5 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 fff6398d4..b43420d81 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 5932722bf..38073cb5f 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 (