Skip to content

Commit

Permalink
Fix snippet for 'for' statement
Browse files Browse the repository at this point in the history
  • Loading branch information
oivoodoo committed Jan 29, 2012
1 parent 45f8297 commit 81d9279
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions javascript/for.snippet
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
for (var <+i+>=0; <+i+> < <+<+Things+>.length+>; <+i+>++) {
<+<+Things+>[<+i+>]+>
};
for (var ${1:i}=0; ${1:i} < ${2:collection}.length; ${1:i}++) {
${2:collection}[${1:i}]
}

0 comments on commit 81d9279

Please sign in to comment.