Fix c for snippet

This commit is contained in:
Austen Adler 2016-10-01 15:49:35 -04:00
parent 6f29328432
commit 6ae744c380
No known key found for this signature in database
GPG Key ID: 7ECEE590CCDFE3F1

View File

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