Skip to content

Commit 8c4c6f3

Browse files
committed
Fix Applicative -> Apply description
1 parent 13f96a8 commit 8c4c6f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/Unfoldable1.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ replicate1 n v = unfoldr1 step (n - 1)
3535
| i <= 0 = Tuple v Nothing
3636
| otherwise = Tuple v (Just (i - 1))
3737

38-
-- | Perform an `Applicative` action `n` times (at least once, so values `n < 1`
38+
-- | Perform an `Apply` action `n` times (at least once, so values `n < 1`
3939
-- | less than one will be ignored), and accumulate the results.
4040
replicate1A
4141
:: forall m f a

0 commit comments

Comments
 (0)