Skip to content

Commit da05752

Browse files
committed
Update standard/attributes.md
1 parent 638ccc6 commit da05752

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

standard/attributes.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -855,17 +855,17 @@ The code-analysis attributes are declared in namespace `System.Diagnostics.CodeA
855855
856856
**Attribute** | **Meaning**
857857
------------------ | ------------------
858-
``AllowNull`` ([§23.5.7.2](attributes.md#23572-the-allownull-attribute)) | A non-nullable argument may be null.
859-
``DisallowNull`` ([§23.5.7.3](attributes.md#23573-the-disallownull-attribute)) | A nullable argument should never be null.
860-
``MaybeNull`` ([§23.5.7.6](attributes.md#23576-the-maybenull-attribute)) | A non-nullable return value may be null.
861-
``NotNull`` ([§23.5.7.8](attributes.md#23578-the-notnull-attribute)) | A nullable return value will never be null.
862-
``MaybeNullWhen`` ([§23.5.7.7](attributes.md#23577-the-maybenullwhen-attribute)) | A non-nullable argument may be null when the method returns the specified ``bool`` value.
863-
``NotNullWhen`` ([§23.5.7.10](attributes.md#235710-the-notnullwhen-attribute)) | A nullable argument won't be null when the method returns the specified ``bool`` value.
864-
``NotNullIfNotNull`` ([§23.5.7.9](attributes.md#23579-the-notnullifnotnull-attribute)) | A return value isn't null if the argument for the specified parameter isn't null.
865-
``MemberNotNull`` (§membernotnull-attribute) | The listed member won't be null when the method returns.
866-
``MemberNotNullWhen`` (§membernotnullwhen-attribute) | The listed member won't be null when the method returns the specified ``bool`` value.
867-
``DoesNotReturn`` ([§23.5.7.4](attributes.md#23574-the-doesnotreturn-attribute)) | This method never returns.
868-
``DoesNotReturnIf`` ([§23.5.7.5](attributes.md#23575-the-doesnotreturnif-attribute)) | This method never returns if the associated ``bool`` parameter has the specified value.
858+
`AllowNull` ([§23.5.7.2](attributes.md#23572-the-allownull-attribute)) | A non-nullable argument may be null.
859+
`DisallowNull` ([§23.5.7.3](attributes.md#23573-the-disallownull-attribute)) | A nullable argument should never be null.
860+
`MaybeNull` ([§23.5.7.6](attributes.md#23576-the-maybenull-attribute)) | A non-nullable return value may be null.
861+
`NotNull` ([§23.5.7.8](attributes.md#23578-the-notnull-attribute)) | A nullable return value will never be null.
862+
`MaybeNullWhen` ([§23.5.7.7](attributes.md#23577-the-maybenullwhen-attribute)) | A non-nullable argument may be null when the method returns the specified `bool` value.
863+
`NotNullWhen` ([§23.5.7.10](attributes.md#235710-the-notnullwhen-attribute)) | A nullable argument won't be null when the method returns the specified `bool` value.
864+
`NotNullIfNotNull` ([§23.5.7.9](attributes.md#23579-the-notnullifnotnull-attribute)) | A return value isn't null if the argument for the specified parameter isn't null.
865+
`MemberNotNull` (§membernotnull-attribute) | The listed member won't be null when the method returns.
866+
`MemberNotNullWhen` (§membernotnullwhen-attribute) | The listed member won't be null when the method returns the specified `bool` value.
867+
`DoesNotReturn` ([§23.5.7.4](attributes.md#23574-the-doesnotreturn-attribute)) | This method never returns.
868+
`DoesNotReturnIf` ([§23.5.7.5](attributes.md#23575-the-doesnotreturnif-attribute)) | This method never returns if the associated `bool` parameter has the specified value.
869869
870870
The following subclauses in [§23.5.7.1](attributes.md#23571-general) are conditionally normative.
871871

0 commit comments

Comments
 (0)