Skip to content

Commit a51d678

Browse files
committed
more warnings
1 parent c21fd4a commit a51d678

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/csharp/fundamentals/null-safety/common-tasks/resolve-warnings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The fix is usually a *guard clause*. A *guard clause* is a check at the top of a
4848

4949
The property pattern `{ Length: > 0 }` matches only when `message` is non-null *and* its `Length` property is greater than zero, so the compiler treats `message` as *not-null* inside the `if` block. A simpler `is not null` test produces the same null-state narrowing without inspecting any properties.
5050

51-
For an in-depth tour of the operators, see [Null operators](null-operators.md).
51+
For an in-depth tour of the operators, see [Null operators](../null-operators.md).
5252

5353
## Adjust annotations
5454

@@ -133,8 +133,8 @@ To plan a migration that progressively enables nullable reference types in an ex
133133

134134
## Related content
135135

136-
- [Nullable reference types](nullable-reference-types.md)
137-
- [Null operators](null-operators.md)
136+
- [Nullable reference types](../nullable-reference-types.md)
137+
- [Null operators](../null-operators.md)
138138
- [Nullable migration strategies](../../../advanced-topics/update-applications/nullable-migration-strategies.md)
139139
- [Nullable static analysis attributes](../../../language-reference/attributes/nullable-analysis.md)
140140
- [Resolve nullable warnings (compiler reference)](../../../language-reference/compiler-messages/nullable-warnings.md)

0 commit comments

Comments
 (0)