From 655d286ec51ca35cf3c32fdb71bbadcfa50c0926 Mon Sep 17 00:00:00 2001 From: Mark Michaelis Date: Wed, 27 Sep 2023 09:55:27 +0000 Subject: [PATCH] White space Co-authored-by: Kevin B --- src/Chapter03/Listing03.26a.SlicingWithSpan.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Chapter03/Listing03.26a.SlicingWithSpan.cs b/src/Chapter03/Listing03.26a.SlicingWithSpan.cs index 46649fa6..e927cd91 100644 --- a/src/Chapter03/Listing03.26a.SlicingWithSpan.cs +++ b/src/Chapter03/Listing03.26a.SlicingWithSpan.cs @@ -13,7 +13,7 @@ public static void Main() Span span = languages.AsSpan(1); System.Diagnostics.Trace.Assert( - ReferenceEquals( languages[1], span[0])); + ReferenceEquals(languages[1], span[0])); /* Console.WriteLine($@"^3..^0: {