diff --git a/src/libraries/System.Private.CoreLib/src/System/Diagnostics/CodeAnalysis/NullableAttributes.cs b/src/libraries/System.Private.CoreLib/src/System/Diagnostics/CodeAnalysis/NullableAttributes.cs index 361f88fa360c3a..94a7a79ac19dbe 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Diagnostics/CodeAnalysis/NullableAttributes.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Diagnostics/CodeAnalysis/NullableAttributes.cs @@ -163,7 +163,7 @@ sealed class MemberNotNullWhenAttribute : Attribute { /// Initializes the attribute with the specified return value condition and a field or property member. /// - /// The return value condition. If the method returns this value, the associated parameter will not be null. + /// The return value condition. If the method returns this value, the associated field or property member will not be null. /// /// /// The field or property member that is promised to be not-null. @@ -176,7 +176,7 @@ public MemberNotNullWhenAttribute(bool returnValue, string member) /// Initializes the attribute with the specified return value condition and list of field and property members. /// - /// The return value condition. If the method returns this value, the associated parameter will not be null. + /// The return value condition. If the method returns this value, the associated field and property members will not be null. /// /// /// The list of field and property members that are promised to be not-null.