From c3d43ed0f4ba63f4a5fe4d28dea48872c8af2e10 Mon Sep 17 00:00:00 2001 From: Tim Burks Date: Tue, 5 Apr 2016 17:31:00 -0700 Subject: [PATCH] Update grpc-auth-support.md --- Documentation/grpc-auth-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/grpc-auth-support.md b/Documentation/grpc-auth-support.md index 5a075f61..5312b572 100644 --- a/Documentation/grpc-auth-support.md +++ b/Documentation/grpc-auth-support.md @@ -5,7 +5,7 @@ As outlined in the [gRPC authentication guide](http://www.grpc.io/docs/guides/au # Enabling TLS on a gRPC client ```Go -conn, err := grpc.Dial(serverAddr, grpc.WithTransportCredentials(credentials.NewClientTLSFromCert(nil, "")) +conn, err := grpc.Dial(serverAddr, grpc.WithTransportCredentials(credentials.NewClientTLSFromCert(nil, ""))) ``` # Enabling TLS on a gRPC server