diff --git a/CHANGELOG.md b/CHANGELOG.md index 79b5a88..953fccf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ New features: Bugfixes: Other improvements: + - Corrected typo in documentation for `(<<$>>)` (#27) ## [v6.0.0](https://github.com/purescript/purescript-bifunctors/releases/tag/v6.0.0) - 2022-04-27 diff --git a/src/Control/Biapply.purs b/src/Control/Biapply.purs index 6bb247c..c042563 100644 --- a/src/Control/Biapply.purs +++ b/src/Control/Biapply.purs @@ -9,7 +9,7 @@ import Data.Tuple (Tuple(..)) -- | the style of `Applicative`: -- | -- | ```purescript --- | bipure f g <<$>> x <<*>> y +-- | bimap f g <<$>> x <<*>> y -- | ``` infixl 4 identity as <<$>>