We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13f96a8 commit 8c4c6f3Copy full SHA for 8c4c6f3
src/Data/Unfoldable1.purs
@@ -35,7 +35,7 @@ replicate1 n v = unfoldr1 step (n - 1)
35
| i <= 0 = Tuple v Nothing
36
| otherwise = Tuple v (Just (i - 1))
37
38
--- | Perform an `Applicative` action `n` times (at least once, so values `n < 1`
+-- | Perform an `Apply` action `n` times (at least once, so values `n < 1`
39
-- | less than one will be ignored), and accumulate the results.
40
replicate1A
41
:: forall m f a
0 commit comments