Fix c for snippet

This commit is contained in:
Austen Adler 2016-10-01 15:46:47 -04:00
parent 0f233ad4c6
commit 3f96e527af
No known key found for this signature in database
GPG Key ID: 7ECEE590CCDFE3F1

View File

@ -104,7 +104,7 @@ snippet ret
## Loops ## Loops
# for # for
snippet for snippet for
for (${2:i} = 0; $2 < ${1:count}; $2${3:++}) { for (int ${1:i} = 0; $1 < ${2:count}; $1${3:++}) {
${4} ${4}
} }
# for (custom) # for (custom)