From 74160885884ae86e816df8e9c17e77bb513be0cf Mon Sep 17 00:00:00 2001 From: Eddy Nakamura Date: Tue, 25 Aug 2020 16:52:52 -0300 Subject: [PATCH] updating spaces to be correct --- .automation/test/csharp/csharp_good_01.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.automation/test/csharp/csharp_good_01.cs b/.automation/test/csharp/csharp_good_01.cs index b17954e5..a68542dc 100644 --- a/.automation/test/csharp/csharp_good_01.cs +++ b/.automation/test/csharp/csharp_good_01.cs @@ -2,11 +2,11 @@ using System; namespace HelloWorld { - class Program - { - static void Main(string[] args) + class Program { - Console.WriteLine("Hello World!"); + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } } - } }