Skip to content

Commit a41640e

Browse files
committed
Attempt to fix link verification errors
1 parent 4b534df commit a41640e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blog/_posts/2018-06-13-scala-213-collections.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ I think the most visible change for end-users is that transformation operations
5252
don’t use `CanBuildFrom` anymore. I believe this will be quite visible despite our previous
5353
efforts to *hide* `CanBuildFrom` from the API documentation of the collections.
5454
Indeed, if you take a look at the
55-
[old 2.12 `List` API](/api/2.12.6/scala/collection/immutable/List.html), the signature
55+
[old 2.12 `List` API](//www.scala-lang.org/api/2.12.6/scala/collection/immutable/List.html), the signature
5656
shown for the `map` operation does not mention `CanBuildFrom`:
5757

5858
![there is no CanBuildFrom](/resources/img/blog/scaladoc-list-map.png)
@@ -64,7 +64,7 @@ However, if you use this operation in your code, then your IDE reveals its actua
6464
As you can see, the type signature shown in the API documentation has been “simplified”
6565
to make it more approachable, but I believe that this is probably introducing more
6666
confusion to the users. Especially when you look at the
67-
[`TreeMap[A, B]` API](/api/2.12.6/scala/collection/immutable/TreeMap.html):
67+
[`TreeMap[A, B]` API](//www.scala-lang.org/api/2.12.6/scala/collection/immutable/TreeMap.html):
6868

6969
![wtf](/resources/img/blog/scaladoc-treemap-map.png)
7070

0 commit comments

Comments
 (0)