Skip to content

Commit

Permalink
Fix doc comments on MemberNotNullWhenAttribute (#99331)
Browse files Browse the repository at this point in the history
  • Loading branch information
bfriesen authored Jul 22, 2024
1 parent 13abb44 commit f1dd158
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ sealed class MemberNotNullWhenAttribute : Attribute
{
/// <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
/// <param name="returnValue">
/// 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.
/// </param>
/// <param name="member">
/// The field or property member that is promised to be not-null.
Expand All @@ -176,7 +176,7 @@ public MemberNotNullWhenAttribute(bool returnValue, string member)

/// <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
/// <param name="returnValue">
/// 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.
/// </param>
/// <param name="members">
/// The list of field and property members that are promised to be not-null.
Expand Down

0 comments on commit f1dd158

Please sign in to comment.