Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 296d128

Browse files
authored
Merge pull request #21 from matthewleon/docs-typo
missing letter in foreachE docs
2 parents 06d02be + 4d89003 commit 296d128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Control/Monad/Eff.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ foreign import forE :: forall e. Int -> Int -> (Int -> Eff e Unit) -> Eff e Unit
8484

8585
-- | Loop over an array of values.
8686
-- |
87-
-- | `foreach xs f` runs the computation returned by the function `f` for each
87+
-- | `foreachE xs f` runs the computation returned by the function `f` for each
8888
-- | of the inputs `xs`.
8989
foreign import foreachE :: forall e a. Array a -> (a -> Eff e Unit) -> Eff e Unit

0 commit comments

Comments
 (0)