From a58a33974e0cb98607eba9537fe4e367f272ef6b Mon Sep 17 00:00:00 2001 From: Jesper Date: Fri, 28 Oct 2016 16:14:42 +0200 Subject: [PATCH] Made ctor snippet use tabs and removed space --- snippets/csharp.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/csharp.json b/snippets/csharp.json index a53f7e2ef..9f31803fe 100644 --- a/snippets/csharp.json +++ b/snippets/csharp.json @@ -526,9 +526,9 @@ "prefix": "ctor", "body": [ - "${1:public} ${2:ClassName} (${3:Parameters})", + "${1:public} ${2:ClassName}(${3:Parameters})", "{", - " ${0}", + " ${0}", "}" ], "description": "constructor"