Skip to content

Commit

Permalink
apply fixes from review
Browse files Browse the repository at this point in the history
[Cherry-picked 32b5843]
  • Loading branch information
Florian3k authored and prolativ committed Nov 20, 2024
1 parent 1921be3 commit 6257761
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion library-aux/src/scala/AnyKind.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package scala

/** The super-type of all types.
*
* See [[https://docs.scala-lang.org/scala3/reference/other-new-features/kind-polymorphism.html]].
* See [[https://docs.scala-lang.org/scala3/reference/other-new-features/kind-polymorphism.html]].
*/
final abstract class AnyKind
2 changes: 1 addition & 1 deletion library-aux/src/scala/Matchable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package scala

/** The base trait of types that can be safely pattern matched against.
*
* See [[https://docs.scala-lang.org/scala3/reference/other-new-features/matchable.html]].
* See [[https://docs.scala-lang.org/scala3/reference/other-new-features/matchable.html]].
*/
trait Matchable
4 changes: 2 additions & 2 deletions library-aux/src/scala/andType.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package scala

/** The intersection of two types.
*
* See [[https://docs.scala-lang.org/scala3/reference/new-types/intersection-types.html]].
* See [[https://docs.scala-lang.org/scala3/reference/new-types/intersection-types.html]].
*/
type &[A, B] = A & B
type &[A, B]
4 changes: 2 additions & 2 deletions library-aux/src/scala/orType.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package scala

/** The union of two types.
*
* See [[https://docs.scala-lang.org/scala3/reference/new-types/union-types.html]].
* See [[https://docs.scala-lang.org/scala3/reference/new-types/union-types.html]].
*/
type |[A, B] = A | B
type |[A, B]

0 comments on commit 6257761

Please sign in to comment.