From 6d6ba9e8d438608230e74c234c52460f29b93824 Mon Sep 17 00:00:00 2001 From: Aldwin Vlasblom Date: Tue, 26 Dec 2023 22:26:04 +0100 Subject: [PATCH] Add the missing paren to the Bifunctor composition law --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9044892..8096fb4 100644 --- a/README.md +++ b/README.md @@ -748,7 +748,7 @@ A value that implements the Bifunctor specification must also implement the [Functor](#functor) specification. 1. `p['fantasy-land/bimap'](a => a, b => b)` is equivalent to `p` (identity) -2. `p['fantasy-land/bimap'](a => f(g(a)), b => h(i(b))` is equivalent to `p['fantasy-land/bimap'](g, i)['fantasy-land/bimap'](f, h)` (composition) +2. `p['fantasy-land/bimap'](a => f(g(a)), b => h(i(b)))` is equivalent to `p['fantasy-land/bimap'](g, i)['fantasy-land/bimap'](f, h)` (composition)