Skip to content

Commit

Permalink
Fixed bad copy/paste. It was an em-dash not a -- :/
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.textmate.org/trunk/Bundles/JavaScript.tmbundle@6542 dfb7d73b-c2ec-0310-8fea-fb051d288c6d
  • Loading branch information
subtleGradient committed Feb 9, 2007
1 parent 97cb424 commit 14c2aaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snippets/for (…) {…} (faster).tmSnippet
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>content</key>
<string>for (var ${20:i} = ${1:Things}.length - 1; ${20:i} &gt;= 0; ${20:i}){
<string>for (var ${20:i} = ${1:Things}.length - 1; ${20:i} &gt;= 0; ${20:i}--){
${100:${1:Things}[${20:i}]}$0
};</string>
<key>name</key>
Expand Down

0 comments on commit 14c2aaa

Please sign in to comment.