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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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