Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
kailuowang authored Aug 9, 2017
1 parent fdcd48f commit a2cfd1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test/scala/cats/tests/RegressionTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ object RegressionTests {
final case class First[A](getFirst: A) extends AnyVal
object First {
implicit def showInstance[A](implicit ev: Show[A]): Show[First[A]] = new Show[First[A]] {
override def show(f: First[A]): String = s"First(${ev.show(f.getFirst)})"
def show(f: First[A]): String = s"First(${ev.show(f.getFirst)})"
}
}

Expand Down

0 comments on commit a2cfd1d

Please sign in to comment.