Skip to content

Commit

Permalink
Add type for implicit val (#3191)
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown authored and kailuowang committed Dec 9, 2019
1 parent cc0ba4b commit b23e647
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cats.kernel
package instances

trait CharInstances {
implicit val catsKernelStdOrderForChar = new CharOrder
implicit val catsKernelStdOrderForChar: CharOrder = new CharOrder
}

trait CharBounded extends LowerBounded[Char] with UpperBounded[Char] {
Expand Down

0 comments on commit b23e647

Please sign in to comment.