From f7396671f9336937d2f9826187491fc6bf30dea1 Mon Sep 17 00:00:00 2001 From: Justin Heyes-Jones Date: Sun, 22 Sep 2019 19:08:13 -0700 Subject: [PATCH] Correct some mistakes in Comonad documentatoin (#3081) --- docs/src/main/tut/typeclasses/comonad.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/tut/typeclasses/comonad.md b/docs/src/main/tut/typeclasses/comonad.md index a013564199..b48c34e6d5 100644 --- a/docs/src/main/tut/typeclasses/comonad.md +++ b/docs/src/main/tut/typeclasses/comonad.md @@ -9,7 +9,7 @@ scaladoc: "#cats.Comonad" `Comonad` is a `Functor` and provides duals of the [`Monad`](monad.html) `pure` and `flatMap` functions. A dual to a function has the same types but the -direction of the arrows are reversed. Whether or not that is useful even possible +direction of the arrows are reversed. Whether or not that is useful, or even possible, depends on the particular type. For a more formal definition of duality, please refer to [https://ncatlab.org/nlab/show/duality](https://ncatlab.org/nlab/show/duality).