Skip to content
This repository has been archived by the owner on Jun 10, 2018. It is now read-only.

Commit

Permalink
removed unnecessary semi-colons in js snippet if/if-else
Browse files Browse the repository at this point in the history
  • Loading branch information
muffinresearch authored and Michael Sanders committed Dec 28, 2009
1 parent 6ffe172 commit 1e17e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snippets/javascript.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ snippet f
function(${1}) {${2}};
# if
snippet if
if (${1:true}) {${2}};
if (${1:true}) {${2}}
# if ... else
snippet ife
if (${1:true}) {${2}}
else{${3}};
else{${3}}
# tertiary conditional
snippet t
${1:/* condition */} ? ${2:a} : ${3:b}
Expand Down

0 comments on commit 1e17e07

Please sign in to comment.