Skip to content

Commit 4ac4185

Browse files
author
James Thompson
committed
fix type lambda syntax
1 parent 5e4be2b commit 4ac4185

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
@@ -55,7 +55,7 @@ delegate ListMonad for Monad[List] {
5555
List(x)
5656
}
5757

58-
delegate ReaderMonad[Ctx] for Monad[[X] => Ctx => X] {
58+
delegate ReaderMonad[Ctx] for Monad[[X] =>> Ctx => X] {
5959
def (r: Ctx => A) flatMap [A, B] (f: A => Ctx => B): Ctx => B =
6060
ctx => f(r(ctx))(ctx)
6161
def pure[A](x: A): Ctx => A =

0 commit comments

Comments
 (0)