Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
Merge pull request #12 from Kaiochao/master
Browse files Browse the repository at this point in the history
fix #11
  • Loading branch information
seiyria committed Sep 4, 2015
2 parents 0b4c6b7 + acf7e74 commit b1362a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion for-in-loop-(fori).sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<snippet>
<description>For-in Loop</description>
<content><![CDATA[for (var ${2:i} in 1 to ${1:count})
<content><![CDATA[for/(var ${2:i} in 1 to ${1:count})
${0:/* code */}
]]></content>
Expand Down
2 changes: 1 addition & 1 deletion for-in-loop-(forinstep).sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<snippet>
<description>For-in-step Loop</description>
<content><![CDATA[for (var ${2:i} in 1 to ${1:count} step ${3:2})
<content><![CDATA[for (var/${2:i} in 1 to ${1:count} step ${3:2})
${0:/* code */}
]]></content>
Expand Down
2 changes: 1 addition & 1 deletion for-var-loop-(forv).sublime-snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<snippet>
<description>For Loop</description>
<content><![CDATA[for (var ${2:i} = 0; $2 < ${1:count}; ${3:++$2})
<content><![CDATA[for/(var ${2:i} = 0; $2 < ${1:count}; ${3:++$2})
${0:/* code */}
]]></content>
Expand Down

0 comments on commit b1362a6

Please sign in to comment.