From 4a582b7116d656295c57f2770206fed44545e1fe Mon Sep 17 00:00:00 2001 From: Peter Perhac Date: Tue, 25 Apr 2017 21:47:01 +0100 Subject: [PATCH] show(f:T) to show(t:T) 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 {