From 40e7cf7a99dfb2c4909cf20627ff3dc41423cdd3 Mon Sep 17 00:00:00 2001 From: peterneyens Date: Tue, 17 May 2016 14:51:19 +0200 Subject: [PATCH] Add a link to the OptionT documentation from the part about monad composition in the Monad documentation. --- docs/src/main/tut/monad.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/main/tut/monad.md b/docs/src/main/tut/monad.md index d9e5a5c950..b8607826f6 100644 --- a/docs/src/main/tut/monad.md +++ b/docs/src/main/tut/monad.md @@ -113,3 +113,4 @@ implicit def optionTMonad[F[_]](implicit F : Monad[F]) = { This sort of construction is called a monad transformer. +Cats has an [`OptionT`](optiont.html) monad transformer, which adds a lot of useful functions to the simple implementation above. \ No newline at end of file