From d80e09ae20ea1f9e5bb78c33ef9ea3e66a072886 Mon Sep 17 00:00:00 2001 From: tony newell Date: Mon, 26 Feb 2024 13:41:45 +0000 Subject: [PATCH] Fix code formatting --- src/google/protobuf/compiler/csharp/csharp_doc_comment.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc b/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc index 56a7ab232e..2e087e0cfc 100644 --- a/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc +++ b/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc @@ -58,7 +58,7 @@ void WriteDocCommentBodyImpl(io::Printer* printer, SourceLocation location) { // to complain when generating the XML documentation // Issue https://github.com/grpc/grpc/issues/35905 if (line[0] == '/') { - line.replace(0,1,"/"); + line.replace(0, 1, "/"); } printer->Print("///$line$\n", "line", line); }