You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/_docs/reference/experimental/into-modifier.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Here, the conversion from `String` to `Iterable[Char]` is applied on the results
46
46
## Vararg arguments
47
47
48
48
When applied to a vararg parameter, `into` allows a conversion on each argument value individually. For example, consider a method `concatAll` that concatenates a variable
49
-
number of `Seq[Char]` arguments, and also allows implicit conversions into `Seq[Char`:
49
+
number of `IterableOnce[Char]` arguments, and also allows implicit conversions into `IterableOnce[Char]`:
50
50
51
51
```scala
52
52
defconcatAll(xss: into IterableOnce[Char]*):List[Char] =
0 commit comments