Skip to content

Commit c6b1220

Browse files
benluobishabosha
andauthored
Update _overviews/scala3-book/taste-collections.md
Co-authored-by: Jamie Thompson <bishbashboshjt@gmail.com>
1 parent a43124f commit c6b1220

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-book/taste-collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Collections classes are available in both immutable and mutable forms.
1717
To give you a taste of how these work, here are some examples that use the `List` class, which is an immutable, linked-list class.
1818
These examples show different ways to create a populated `List`:
1919

20-
{% tabs collection_1 class=tabs-scala-version %}
20+
{% tabs collection_1 %}
2121
{% tab 'Scala 2 and 3' for=collection_1 %}
2222
```scala
2323
val a = List(1, 2, 3) // a: List[Int] = List(1, 2, 3)

0 commit comments

Comments
 (0)