Skip to content

Commit

Permalink
Fix syntax in R for loop
Browse files Browse the repository at this point in the history
  • Loading branch information
patflick committed Apr 25, 2014
1 parent 8efe43e commit 5edbfec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UltiSnips/r.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ while(${1}) {
endsnippet

snippet for "for loop"
for ({${1:item} in ${2:list}) {
for (${1:item} in ${2:list}) {
${3}
}
endsnippet
Expand Down

0 comments on commit 5edbfec

Please sign in to comment.