From 764ade21372641c44f09a2542ff72b6c72cc80be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Gutowski?= Date: Mon, 2 Sep 2019 22:20:18 +0200 Subject: [PATCH] Fix optionT link in monad documentation --- docs/src/main/tut/typeclasses/monad.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/tut/typeclasses/monad.md b/docs/src/main/tut/typeclasses/monad.md index f4af897b53..084383a3a8 100644 --- a/docs/src/main/tut/typeclasses/monad.md +++ b/docs/src/main/tut/typeclasses/monad.md @@ -158,7 +158,7 @@ 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. +Cats has an [`OptionT`](../datatypes/optiont.html) monad transformer, which adds a lot of useful functions to the simple implementation above. ## FlatMap - a weakened Monad A closely related type class is `FlatMap` which is identical to `Monad`, minus the `pure`