From c5fa0e08c759c75b02910acf0ed58e45d9bffe0c Mon Sep 17 00:00:00 2001 From: Sydney Acksman Date: Sun, 21 Jul 2019 06:14:21 -0500 Subject: [PATCH] Fix comment on IExtendableMessage.GetOrRegisterExtension --- csharp/src/Google.Protobuf/IExtendableMessage.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/csharp/src/Google.Protobuf/IExtendableMessage.cs b/csharp/src/Google.Protobuf/IExtendableMessage.cs index 5cc2ae31a6..8857493826 100644 --- a/csharp/src/Google.Protobuf/IExtendableMessage.cs +++ b/csharp/src/Google.Protobuf/IExtendableMessage.cs @@ -50,8 +50,8 @@ namespace Google.Protobuf /// RepeatedField GetExtension(RepeatedExtension extension); - /// - /// Gets the value of the specified repeated extension, registering it if it isn't + /// + /// Gets the value of the specified repeated extension, registering it if it hasn't already been registered. /// RepeatedField GetOrRegisterExtension(RepeatedExtension extension); @@ -65,13 +65,13 @@ namespace Google.Protobuf /// bool HasExtension(Extension extension); - /// - /// Clears the value of the specified extension + /// + /// Clears the value of the specified extension /// void ClearExtension(Extension extension); - /// - /// Clears the value of the specified repeated extension + /// + /// Clears the value of the specified repeated extension /// void ClearExtension(RepeatedExtension extension); }