We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e4be2b commit 4ac4185Copy full SHA for 4ac4185
docs/docs/reference/contextual/typeclasses.md
@@ -55,7 +55,7 @@ delegate ListMonad for Monad[List] {
55
List(x)
56
}
57
58
-delegate ReaderMonad[Ctx] for Monad[[X] => Ctx => X] {
+delegate ReaderMonad[Ctx] for Monad[[X] =>> Ctx => X] {
59
def (r: Ctx => A) flatMap [A, B] (f: A => Ctx => B): Ctx => B =
60
ctx => f(r(ctx))(ctx)
61
def pure[A](x: A): Ctx => A =
0 commit comments