From 61333313ae6d1d8c9a8635e9d424a6105b8eb751 Mon Sep 17 00:00:00 2001 From: chemzqm Date: Wed, 14 Nov 2018 13:15:55 +0800 Subject: [PATCH] remove comments from snippet body --- snippets/typescript.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/snippets/typescript.json b/snippets/typescript.json index 0a71957..61f87e4 100644 --- a/snippets/typescript.json +++ b/snippets/typescript.json @@ -2,9 +2,6 @@ "Constructor": { "prefix": "ctor", "body": [ - "/**", - " *", - " */", "constructor() {", "\tsuper();", "\t$0", @@ -26,9 +23,6 @@ "Public Method Definition": { "prefix": "public method", "body": [ - "/**", - " * ${1:name}", - " */", "public ${1:name}() {", "\t$0", "}"