aboutsummaryrefslogtreecommitdiffhomepage
path: root/go
diff options
context:
space:
mode:
authorGravatar iamqizhao <toqizhao@gmail.com>2015-02-26 13:41:17 -0800
committerGravatar iamqizhao <toqizhao@gmail.com>2015-02-26 13:41:17 -0800
commit909ddaa073d03f4b11a6d387da751d1b3d6e0017 (patch)
treeb4330514788ca4cfd5c067a082f88a171fb1f8f9 /go
parentc341a6b9cc9d1e128be6b5853bda0fa6e9d71be0 (diff)
update gotutorial a bit (contd)
Diffstat (limited to 'go')
-rw-r--r--go/gotutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/gotutorial.md b/go/gotutorial.md
index 29bfba9009..9928a8d053 100644
--- a/go/gotutorial.md
+++ b/go/gotutorial.md
@@ -91,7 +91,7 @@ message Point {
Next we need to generate the gRPC client and server interfaces from our .proto service definition. We do this using the protocol buffer compiler `protoc` with a special gRPC Go plugin.
-For simplicity, we've provided a [bash script](https://github.com/grpc/grpc-go/blob/master/codegen.sh) that runs `protoc` for you with the appropriate plugin, input, and output (if you want to run this by yourself, make sure you've installed protoc and followed the [installation instructions](https://github.com/grpc/grpc-go/blob/master/README.md) first):
+For simplicity, we've provided a [bash script](https://github.com/grpc/grpc-go/blob/master/codegen.sh) that runs `protoc` for you with the appropriate plugin, input, and output (if you want to run this by yourself, make sure you've installed protoc and followed the gRPC-Go [installation instructions](https://github.com/grpc/grpc-go/blob/master/README.md) first):
```shell
$ codegen.sh route_guide.proto