Skip to content

Commit eabe4e2

Browse files
authored
Removes erroneous d in (&&&)'s example
The `d` in `forall a b c d` is erroneous.
1 parent 7a60ada commit eabe4e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Data/Profunctor/Strong.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ infixr 3 splitStrong as ***
6262
-- |
6363
-- | Specializing `(&&&)` to function application would look like this:
6464
-- | ```
65-
-- | (&&&) :: forall a b c d. (a -> b) -> (a -> c) -> (a -> (Tuple b c))
65+
-- | (&&&) :: forall a b c. (a -> b) -> (a -> c) -> (a -> (Tuple b c))
6666
-- | ```
6767
-- | We take two functions, `f` and `g`, with the same parameter type and we transform them into a
6868
-- | single function which takes one parameter and returns a `Tuple` of the results of running

0 commit comments

Comments
 (0)