From 1e2e6e935ac55df72fa5be79ca67315444de5d12 Mon Sep 17 00:00:00 2001 From: Lydon Chandra Date: Mon, 3 Jul 2023 21:25:45 +0800 Subject: [PATCH] Updated xml docs as per suggestion --- csharp/src/Google.Protobuf/CodedOutputStream.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/src/Google.Protobuf/CodedOutputStream.cs b/csharp/src/Google.Protobuf/CodedOutputStream.cs index 2c8b092667..e4da9097fb 100644 --- a/csharp/src/Google.Protobuf/CodedOutputStream.cs +++ b/csharp/src/Google.Protobuf/CodedOutputStream.cs @@ -161,13 +161,13 @@ namespace Google.Protobuf } /// - /// Configures serialization to be deterministic. + /// Configures whether or not serialization is deterministic. /// /// - /// The deterministic serialization guarantees that for a given binary, equal messages (defined by the + /// Deterministic serialization guarantees that for a given binary, equal messages (defined by the /// equals methods in protos) will always be serialized to the same bytes. This implies: /// - /// Repeated serialization of a message will return the same bytes + /// Repeated serialization of a message will return the same bytes. /// Different processes of the same binary (which may be executing on different machines) /// will serialize equal messages to the same bytes. ///