Skip to content

Commit 870aab6

Browse files
committed
fix
1 parent a1b38d5 commit 870aab6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/unroll-default-arguments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ case class Unrolled(s: String, n: Int = 1, @unroll b: Boolean = true, l: Long =
380380
}
381381
object Unrolled{
382382
def apply(s: String, n: Int) = apply(s, n, true, 0L)
383-
def apply(s: String, n: Int, b: Boolean) = apply(s, n, b, , 0L)
383+
def apply(s: String, n: Int, b: Boolean) = apply(s, n, b, 0L)
384384
}
385385
```
386386

0 commit comments

Comments
 (0)