Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2022-10-25 08:16:18 +0300
committerEvan Read <eread@gitlab.com>2022-10-25 08:16:18 +0300
commit9be881dcaf178215d2deb3ac5f3da7986957a7dd (patch)
treed466a66ebc9c426b71a860340a4540a11ff248bb
parent90964186c61d5c2b93a744944666461fc2fab190 (diff)
Switch Go syntax highlighting to Protobuferead/complete-fix-of-markdownlint-violations-in-the-docs
-rw-r--r--doc/protobuf.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/protobuf.md b/doc/protobuf.md
index 61ac2f8f9..94831731a 100644
--- a/doc/protobuf.md
+++ b/doc/protobuf.md
@@ -203,7 +203,7 @@ messages should not typically be larger than 1MB.
#### Stream response of many small items
-```go
+```protobuf
rpc FooBar(FooBarRequest) returns (stream FooBarResponse);
message FooBarResponse {
@@ -222,7 +222,7 @@ the bookkeeping you can use
#### Single large item split over multiple messages
-```go
+```protobuf
rpc FooBar(FooBarRequest) returns (stream FooBarResponse);
message FooBarResponse {
@@ -254,7 +254,7 @@ to turn your gRPC response stream into an `io.Writer`.
#### Many large items split over multiple messages
-```go
+```protobuf
rpc FooBar(FooBarRequest) returns (stream FooBarResponse);
message FooBarResponse {