Skip to content

Commit 22b66cf

Browse files
committed
prePR
1 parent 83dd631 commit 22b66cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/cats/instances/either.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ trait EitherInstances extends cats.kernel.instances.EitherInstances {
7979

8080
override def as[B, C](fa: Either[A, B], c: C): Either[A, C] =
8181
fa match {
82-
case Right(_) => Right(c)
82+
case Right(_) => Right(c)
8383
case left @ Left(_) => left.rightCast[C]
8484
}
8585

0 commit comments

Comments
 (0)