Skip to content

Commit

Permalink
fix instance class name
Browse files Browse the repository at this point in the history
  • Loading branch information
kailuowang authored Jun 28, 2018
1 parent b92baa5 commit 4fe015a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/data/AndThen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ sealed abstract class AndThen[-T, +R]
"AndThen$" + System.identityHashCode(this)
}

object AndThen extends AndThenInstances1 {
object AndThen extends AndThenInstances0 {
/** Builds an [[AndThen]] reference by wrapping a plain function. */
def apply[A, B](f: A => B): AndThen[A, B] =
f match {
Expand Down

0 comments on commit 4fe015a

Please sign in to comment.