From cbaef8bf4faa92d9ccc4a10efd0192803e593670 Mon Sep 17 00:00:00 2001 From: Tom Van Goethem Date: Thu, 27 Feb 2014 15:17:20 +0100 Subject: [PATCH] fix incorrect `\` in forin --- snippets/language-javascript.cson | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/language-javascript.cson b/snippets/language-javascript.cson index 6a1fc4ca..861cd815 100644 --- a/snippets/language-javascript.cson +++ b/snippets/language-javascript.cson @@ -16,7 +16,7 @@ 'body': 'else {\n\t$1\n}' 'for in': 'prefix': 'forin' - 'body': 'for (${1:variable} in ${2:object}) {\n\t${5:if (${3:object}.hasOwnProperty(${4:variable})) {\n\t\t$6\n\t\\}}\n}' + 'body': 'for (${1:variable} in ${2:object}) {\n\t${5:if (${3:object}.hasOwnProperty(${4:variable})) {\n\t\t$6\n\t}}\n}' 'Function': 'prefix': 'fun' 'body': 'function ${1:function_name}(${2:argument}) {\n\t${0:// body...}\n}'