Skip to content

Commit 9795f12

Browse files
oderskybishabosha
andauthored
Update docs/_docs/reference/experimental/into-modifier.md
Co-authored-by: Jamie Thompson <[email protected]>
1 parent b89c10a commit 9795f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_docs/reference/experimental/into-modifier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Here, the conversion from `String` to `Iterable[Char]` is applied on the results
4646
## Vararg arguments
4747

4848
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]`:
5050

5151
```scala
5252
def concatAll(xss: into IterableOnce[Char]*): List[Char] =

0 commit comments

Comments
 (0)