Skip to content

Commit 5f20060

Browse files
committed
fix extra quote from 88e2c2f
1 parent 0d60987 commit 5f20060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/ArrayOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ trait ScalaGenArrayOps extends BaseGenArrayOps with ScalaGenBase {
216216
case ArrayUpdate(x,n,y) => emitValDef(sym, src"$x($n) = $y")
217217
case ArrayLength(x) => emitValDef(sym, src"$x.length")
218218
case ArrayForeach(a,x,block) =>
219-
gen"""val $sym = $a.foreach{"
219+
gen"""val $sym = $a.foreach{
220220
|$x =>
221221
|${nestedBlock(block)}
222222
|$block

0 commit comments

Comments
 (0)