File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package scala
2
2
3
3
/** The super-type of all types.
4
4
*
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 ]].
6
6
*/
7
7
final abstract class AnyKind
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package scala
2
2
3
3
/** The base trait of types that can be safely pattern matched against.
4
4
*
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 ]].
6
6
*/
7
7
trait Matchable
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package scala
2
2
3
3
/** The intersection of two types.
4
4
*
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 ]].
6
6
*/
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
2
2
3
3
/** The union of two types.
4
4
*
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 ]].
6
6
*/
7
- type | [A , B ] = A | B
7
+ type | [A , B ]
You can’t perform that action at this time.
0 commit comments