From b61ee2a25d4bd3d1732a39606044c5fe45fbae75 Mon Sep 17 00:00:00 2001 From: Charalampos Karypidis Date: Sun, 2 Oct 2016 11:57:17 +0200 Subject: [PATCH] #12 Fix the description for the promise snippet --- snippets/snippets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/snippets.json b/snippets/snippets.json index 83d2bef..89e31f3 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -109,7 +109,7 @@ "promise": { "prefix": "prom", "body": "return new Promise((resolve, reject) => {\n\t${1}\n});", - "description": "Executes the given function after the specified delay in ES6 syntax" + "description": "Creates and returns a new Promise in the standard ES6 syntax" }, "consoleAssert": {