diff options
author | Sidnei da Silva <sidnei@users.noreply.github.com> | 2015-02-27 01:17:18 +0100 |
---|---|---|
committer | Sidnei da Silva <sidnei@users.noreply.github.com> | 2015-02-27 01:17:18 +0100 |
commit | da4cc706365d076d1cfb66dab1195e7db6ac2f66 (patch) | |
tree | 2e7ad32ee29aef8f6f678c744de0034735dde90c /go | |
parent | f7feb0e7e3b2739441f293cf287ac2e24b76adfb (diff) |
Update gotutorial.md
Diffstat (limited to 'go')
-rw-r--r-- | go/gotutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/gotutorial.md b/go/gotutorial.md index 5fd6f423c0..50b5037484 100644 --- a/go/gotutorial.md +++ b/go/gotutorial.md @@ -266,7 +266,7 @@ conn, err := grpc.Dial(*serverAddr) defer conn.Close() ``` -We can use DialOptions to set the auth credentials (e.g., TLS, GCE crednetials, JWT credentials) in grpc.Dial if the service you request requires that. +We can use DialOptions to set the auth credentials (e.g., TLS, GCE credentials, JWT credentials) in grpc.Dial if the service you request requires that. Once the gRPC *channel* is setup, we need a client *stub* to perform RPCs by using the `NewRouteGuideClient` method provided in the `pb` package we generated from our .proto. |