File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ useful instances:
24
24
Array a`, for concatenating arrays.
25
25
* ` Foldable ` , which provides a slew of functions for * folding* (also known
26
26
as * reducing* ) arrays down to one value. For example,
27
- ` Data.Foldable.any ` tests whether an array of ` Boolean ` values contains
28
- at least one ` true ` .
27
+ ` Data.Foldable.or ` tests whether an array of ` Boolean ` values contains
28
+ at least one ` true ` value .
29
29
* ` Traversable ` , which provides the PureScript version of a for-loop,
30
30
allowing you to iterate over an array and accumulate effects.
31
31
Original file line number Diff line number Diff line change 22
22
-- | Array a`, for concatenating arrays.
23
23
-- | * `Foldable`, which provides a slew of functions for *folding* (also known
24
24
-- | as *reducing*) arrays down to one value. For example,
25
- -- | `Data.Foldable.any ` tests whether an array of `Boolean` values contains
26
- -- | at least one `true`.
25
+ -- | `Data.Foldable.or ` tests whether an array of `Boolean` values contains
26
+ -- | at least one `true` value .
27
27
-- | * `Traversable`, which provides the PureScript version of a for-loop,
28
28
-- | allowing you to iterate over an array and accumulate effects.
29
29
-- |
You can’t perform that action at this time.
0 commit comments