diff --git a/cc-mode/for b/cc-mode/for index 304e7cf0..0afe221b 100644 --- a/cc-mode/for +++ b/cc-mode/for @@ -3,6 +3,7 @@ # key: for # uuid: for # -- -for (${1:i = 0}; ${2:i < N}; ${3:i++}) { +for (int ${1:i} = 0; $1 < ${2:length}; $1++) +{ $0 -} \ No newline at end of file +}