-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
examples: fix the quickstart link in the routeguide example #7162
Conversation
@arjan-bal Just to double check, quickstart guide is updated and enough to generate the dependencies right? |
Yes, the prerequisites section of the guide has the instructions to install the required tools, mainly the go and grpc-go plugins for protoc. |
examples/gotutorial.md
Outdated
@@ -28,7 +28,7 @@ Then change your current directory to `grpc-go/examples/route_guide`: | |||
$ cd $GOPATH/src/google.golang.org/grpc/examples/route_guide | |||
``` | |||
|
|||
You also should have the relevant tools installed to generate the server and client interface code - if you don't already, follow the setup instructions in [the Go quick start guide](https://github.com/grpc/grpc-go/tree/master/examples/). | |||
You also should have the relevant tools installed to generate the server and client interface code - if you don't already, follow the setup instructions in [the Go quick start guide](https://grpc.io/docs/languages/go/quickstart). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just following the other PR's review, shall we change this to something like
"Ensure you have the relevant tools installed to generate the server and client interface code. If you don't, follow the setup instructions in the Go quick start guide (https://grpc.io/docs/languages/go/quickstart)."
What do you think @arjan-bal?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it sounds better. Changed accordingly.
Thanks @arjan-bal. LGTM!. Pitching in @dfawley to have one more approval. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks!
Point to the Go quickstart link which has the instructions for installing protoc and the required plugins.
RELEASE NOTES: none