Skip to content

Commit

Permalink
White space
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin B <[email protected]>
  • Loading branch information
MarkMichaelis and Keboo authored Sep 27, 2023
1 parent 6680dbe commit 655d286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Chapter03/Listing03.26a.SlicingWithSpan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static void Main()
Span<string> span = languages.AsSpan(1);

System.Diagnostics.Trace.Assert(
ReferenceEquals( languages[1], span[0]));
ReferenceEquals(languages[1], span[0]));

/*
Console.WriteLine($@"^3..^0: {
Expand Down

0 comments on commit 655d286

Please sign in to comment.