From 6d4ad73e6ca28b7ce7a8bc93b80b48a39aa377bb Mon Sep 17 00:00:00 2001 From: Peter Perhac Date: Wed, 26 Apr 2017 00:57:55 +0100 Subject: [PATCH] show(f:T) to show(t:T) (#1637) f could be misleading. usually f parameter is used for functions --- core/src/main/scala/cats/Show.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/cats/Show.scala b/core/src/main/scala/cats/Show.scala index b391b318ee..3f32bdb996 100644 --- a/core/src/main/scala/cats/Show.scala +++ b/core/src/main/scala/cats/Show.scala @@ -11,7 +11,7 @@ import cats.functor.Contravariant * explicitly provided one. */ @typeclass trait Show[T] { - def show(f: T): String + def show(t: T): String } object Show {