From 8448ab9fcf1baca8bbe453823b806710bded4a0c Mon Sep 17 00:00:00 2001 From: Jon Skeet Date: Wed, 3 Aug 2022 11:26:33 +0100 Subject: [PATCH] Fix XML comment warnings for JsonFormatter --- csharp/src/Google.Protobuf/JsonFormatter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/src/Google.Protobuf/JsonFormatter.cs b/csharp/src/Google.Protobuf/JsonFormatter.cs index 4482c8790b..9cecb6a2d2 100644 --- a/csharp/src/Google.Protobuf/JsonFormatter.cs +++ b/csharp/src/Google.Protobuf/JsonFormatter.cs @@ -154,7 +154,7 @@ namespace Google.Protobuf /// /// The message to format. /// Indentation level to start at. - /// To keep consistent indentation when embedding a message inside another JSON string, set . E.g: + /// To keep consistent indentation when embedding a message inside another JSON string, set . E.g: /// /// var response = $@"{{ /// ""data"": { Format(message, indentationLevel: 1) } @@ -178,12 +178,12 @@ namespace Google.Protobuf public void Format(IMessage message, TextWriter writer) => Format(message, writer, indentationLevel: 0); /// - /// Formats the specified message as JSON. When is not null, start indenting at the specified . + /// Formats the specified message as JSON. When is not null, start indenting at the specified . /// /// The message to format. /// The TextWriter to write the formatted message to. /// Indentation level to start at. - /// To keep consistent indentation when embedding a message inside another JSON string, set . + /// To keep consistent indentation when embedding a message inside another JSON string, set . public void Format(IMessage message, TextWriter writer, int indentationLevel) { ProtoPreconditions.CheckNotNull(message, nameof(message));