Skip to content

Commit f378c0f

Browse files
committed
Fixed broken links
1 parent 371ae2c commit f378c0f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

_overviews/scala3-book/collections-summary.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ As shown, Scala comes with a wealth of collections and methods.
1212

1313
When you need to see more details about the collections types shown in this chapter, see their Scaladoc pages:
1414

15-
- [List]({{ site.scaladocref }}/scala/collection/immutable/List.html)
16-
- [Vector]({{ site.scaladocref }}/scala/collection/immutable/Vector.html)
17-
- [ArrayBuffer]({{ site.scaladocref }}/scala/collection/mutable/ArrayBuffer.html)
18-
- [Range]({{ site.scaladocref }}/scala/collection/immutable/Range.html)
15+
- [List](https://www.scala-lang.org/api/current/scala/collection/immutable/List.html)
16+
- [Vector](https://www.scala-lang.org/api/current/scala/collection/immutable/Vector.html)
17+
- [ArrayBuffer](https://www.scala-lang.org/api/current/scala/collection/mutable/ArrayBuffer.html)
18+
- [Range](https://www.scala-lang.org/api/current/scala/collection/immutable/Range.html)
1919

2020
Also mentioned are the immutable `Map` and `Set`:
2121

22-
- [Map]({{ site.scaladocref }}/scala/collection/immutable/Map.html)
23-
- [Set]({{ site.scaladocref }}/scala/collection/immutable/Set.html)
22+
- [Map](https://www.scala-lang.org/api/current/scala/collection/immutable/Map.html)
23+
- [Set](https://www.scala-lang.org/api/current/scala/collection/immutable/Set.html)
2424

2525
and the mutable `Map` and `Set`:
2626

27-
- [Map]({{ site.scaladocref }}/scala/collection/mutable/Map.html)
28-
- [Set]({{ site.scaladocref }}/scala/collection/mutable/Set.html)
27+
- [Map](https://www.scala-lang.org/api/current/scala/collection/mutable/Map.html)
28+
- [Set](https://www.scala-lang.org/api/current/scala/collection/mutable/Set.html)
2929

3030

0 commit comments

Comments
 (0)