Skip to content

Commit

Permalink
Merge pull request #243 from kevin-lee/clean-up
Browse files Browse the repository at this point in the history
Clean up: Remove unnecessary code
  • Loading branch information
kevin-lee authored Feb 13, 2024
2 parents ddff305 + 59a806f commit a4776c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/just/fp/syntax/EqualSyntax.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait EqualSyntax {
new EqualOps(eqLeft)
}
object EqualSyntax {
final class EqualOps[A] private[syntax] (private val eqLeft: A) extends AnyVal {
final class EqualOps[A](private val eqLeft: A) extends AnyVal {
def ===(eqRight: A)(implicit E: Equal[A]): Boolean =
E.equal(eqLeft, eqRight)
def !==(eqRight: A)(implicit E: Equal[A]): Boolean =
Expand Down

0 comments on commit a4776c6

Please sign in to comment.