File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package scala
22
33/** The super-type of all types.
44 *
5- * See [[https://docs.scala-lang.org/scala3/reference/other-new-features/kind-polymorphism.html ]].
5+ * See [[https://docs.scala-lang.org/scala3/reference/other-new-features/kind-polymorphism.html ]].
66 */
77final abstract class AnyKind
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package scala
22
33/** The base trait of types that can be safely pattern matched against.
44 *
5- * See [[https://docs.scala-lang.org/scala3/reference/other-new-features/matchable.html ]].
5+ * See [[https://docs.scala-lang.org/scala3/reference/other-new-features/matchable.html ]].
66 */
77trait Matchable
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package scala
22
33/** The intersection of two types.
44 *
5- * See [[https://docs.scala-lang.org/scala3/reference/new-types/intersection-types.html ]].
5+ * See [[https://docs.scala-lang.org/scala3/reference/new-types/intersection-types.html ]].
66 */
7- type & [A , B ] = A & B
7+ type & [A , B ]
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package scala
22
33/** The union of two types.
44 *
5- * See [[https://docs.scala-lang.org/scala3/reference/new-types/union-types.html ]].
5+ * See [[https://docs.scala-lang.org/scala3/reference/new-types/union-types.html ]].
66 */
7- type | [A , B ] = A | B
7+ type | [A , B ]
You can’t perform that action at this time.
0 commit comments