Skip to content

Commit

Permalink
show(f:T) to show(t:T) (#1637)
Browse files Browse the repository at this point in the history
f could be misleading. usually f parameter is used for functions
  • Loading branch information
PeterPerhac authored and kailuowang committed Apr 25, 2017
1 parent 97a3d26 commit 6d4ad73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/Show.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6d4ad73

Please sign in to comment.