From 9d8c4f6d7540e46a1ea2161113ea0884aa4f6291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E4=B9=9D=E9=BC=8E?= <109224573@qq.com> Date: Wed, 19 Dec 2018 23:23:42 +0800 Subject: [PATCH] Fix indentation --- snippets/csharp/api/system/span/slice2/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/csharp/api/system/span/slice2/Program.cs b/snippets/csharp/api/system/span/slice2/Program.cs index 31b63cfbec0..9b7518cc337 100644 --- a/snippets/csharp/api/system/span/slice2/Program.cs +++ b/snippets/csharp/api/system/span/slice2/Program.cs @@ -12,7 +12,7 @@ static void Main() private static int GetContentLength(ReadOnlySpan span) { var slice = span.Slice(16); - return Int32.Parse(slice); + return Int32.Parse(slice); } } // Output: