From 4c9e859bac3c41e262e457fb7a541fbe0df5d1d8 Mon Sep 17 00:00:00 2001 From: Seetarama Raju Date: Wed, 13 Sep 2023 23:09:14 +0530 Subject: [PATCH] go: Update basics.md - Format file extensions in code font (#1167) --- content/en/docs/languages/go/basics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/languages/go/basics.md b/content/en/docs/languages/go/basics.md index d0cfc96..f53771b 100644 --- a/content/en/docs/languages/go/basics.md +++ b/content/en/docs/languages/go/basics.md @@ -57,7 +57,7 @@ define the gRPC *service* and the method *request* and *response* types using For the complete `.proto` file, see [routeguide/route_guide.proto](https://github.com/grpc/grpc-go/blob/master/examples/route_guide/routeguide/route_guide.proto). -To define a service, you specify a named `service` in your .proto file: +To define a service, you specify a named `service` in your `.proto` file: ```proto service RouteGuide { @@ -118,7 +118,7 @@ all of which are used in the `RouteGuide` service: rpc RouteChat(stream RouteNote) returns (stream RouteNote) {} ``` -Our .proto file also contains protocol buffer message type definitions for all +Our `.proto` file also contains protocol buffer message type definitions for all the request and response types used in our service methods - for example, here's the `Point` message type: