Skip to content

Commit 21a2cd8

Browse files
authored
Merge pull request #6005 from anatoliykmetyuk/patch-2
Update typeclasses.md (typo fix)
2 parents ba7a77f + 4dc8265 commit 21a2cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/reference/contextual/typeclasses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ trait Monoid[T] extends SemiGroup[T] {
1717
def unit: T
1818
}
1919
object Monoid {
20-
def apply[T] = the[Monoid[T]]
20+
def apply[T] given Monoid[T] = the[Monoid[T]]
2121
}
2222

2323
implied for Monoid[String] {

0 commit comments

Comments
 (0)