Skip to content

Commit 6de3cd5

Browse files
committed
Remove trailing whitespace
1 parent c1d79c6 commit 6de3cd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

standard/types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -925,10 +925,10 @@ A compiler can update the null state of a variable as part of its analysis.
925925
> int length = p.Length; // Warning: p is maybe null
926926
>
927927
> string s = p; // No warning. p is not null
928-
>
928+
>
929929
> if (s != null)
930930
> {
931-
> int l2 = s.Length; // No warning. s is not null
931+
> int l2 = s.Length; // No warning. s is not null
932932
> }
933933
> int l3 = s.Length; // Warning. s is maybe null
934934
> }
@@ -1031,7 +1031,7 @@ A compiler may use any expression that dereferences a variable, property, or eve
10311031
> public class C
10321032
> {
10331033
> private C? child;
1034-
>
1034+
>
10351035
> public void M()
10361036
> {
10371037
> _ = child.child.child; // Warning. Dereference possible null value

0 commit comments

Comments
 (0)