Skip to content

Commit

Permalink
Fix JS snippets trailing commas. (#104153)
Browse files Browse the repository at this point in the history
Fix JS snippets trailing commas, introduced by #100657 and observed by #104141.
  • Loading branch information
mrnossiom authored Aug 6, 2020
1 parent ae56913 commit d213eb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/javascript/snippets/javascript.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit d213eb2

Please sign in to comment.