Skip to content

Commit 5edbfec

Browse files
committed
Fix syntax in R for loop
1 parent 8efe43e commit 5edbfec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UltiSnips/r.snippets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ while(${1}) {
4848
endsnippet
4949

5050
snippet for "for loop"
51-
for ({${1:item} in ${2:list}) {
51+
for (${1:item} in ${2:list}) {
5252
${3}
5353
}
5454
endsnippet

0 commit comments

Comments
 (0)