Fix JS snippets trailing commas. (#104153)

Fix JS snippets trailing commas, introduced by #100657 and observed by #104141.
This commit is contained in:
Milo Moisson
2020-08-06 20:42:47 +02:00
committed by GitHub
parent ae56913bf9
commit d213eb2d07

View File

@@ -180,14 +180,14 @@
"Log warning to console": { "Log warning to console": {
"prefix": "warn", "prefix": "warn",
"body": [ "body": [
"console.warn($1);", "console.warn($1);"
], ],
"description": "Log warning to the console" "description": "Log warning to the console"
}, },
"Log error to console": { "Log error to console": {
"prefix": "error", "prefix": "error",
"body": [ "body": [
"console.error($1);", "console.error($1);"
], ],
"description": "Log error to the console" "description": "Log error to the console"
} }