From 51de36e06b64d9b382d7106912f0bc3107f2fc2d Mon Sep 17 00:00:00 2001 From: Appie Date: Mon, 27 Feb 2017 11:21:02 +0100 Subject: [PATCH] Fix(grammar): little grammar fix. --- libs/snippetConverter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/snippetConverter.js b/libs/snippetConverter.js index 0c54f0f..7009370 100644 --- a/libs/snippetConverter.js +++ b/libs/snippetConverter.js @@ -21,7 +21,7 @@ function processSnippetFolder(folderPath, outputFileName) { // Bug Fix: change \\$ to just $. Json Stringify changes the \$ in the sublime template to \\$ so VSCode inserts \$ instead of $ when using the snippets. fs.writeFile(outputFileName, jsonOutput.replace(/\\\\\$/g, '\$'), function (err) { if (err) throw err; - console.log('File wrote to ' + outputFileName); + console.log('File written to ' + outputFileName); }); console.log(count + " snippet(s) found and converted." + (errors.length > 0 ? '\n\nProblems while converting: \n' + errors.join('\n'): '')); return count; @@ -199,4 +199,4 @@ function isFile(filePath) { } } -exports.processSnippetFolder = processSnippetFolder; \ No newline at end of file +exports.processSnippetFolder = processSnippetFolder;