Skip to content

Commit

Permalink
Merge pull request #231 from rebekah/develop
Browse files Browse the repository at this point in the history
bugfix
  • Loading branch information
noelwelsh authored Feb 17, 2023
2 parents 20a178c + eba2978 commit 5bdafeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/type-classes/printable.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ object Printable {
p.format(input)

def print[A](input: A)(implicit p: Printable[A]): Unit =
println(format(input))
println(p.format(input))
}
```
</div>
Expand Down

0 comments on commit 5bdafeb

Please sign in to comment.