Skip to content

Commit 32b5843

Browse files
committed
apply fixes from review
1 parent 27bd975 commit 32b5843

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

library-aux/src/scala/AnyKind.scala

+1-1
Original file line numberDiff line numberDiff 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
*/
77
final abstract class AnyKind

library-aux/src/scala/Matchable.scala

+1-1
Original file line numberDiff line numberDiff 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
*/
77
trait Matchable

library-aux/src/scala/andType.scala

+2-2
Original file line numberDiff line numberDiff 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]

library-aux/src/scala/orType.scala

+2-2
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)