Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/Data/Array.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ useful instances:
Array a`, for concatenating arrays.
* `Foldable`, which provides a slew of functions for *folding* (also known
as *reducing*) arrays down to one value. For example,
`Data.Foldable.any` tests whether an array of `Boolean` values contains
at least one `true`.
`Data.Foldable.or` tests whether an array of `Boolean` values contains
at least one `true` value.
* `Traversable`, which provides the PureScript version of a for-loop,
allowing you to iterate over an array and accumulate effects.

Expand Down
4 changes: 2 additions & 2 deletions src/Data/Array.purs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
-- | Array a`, for concatenating arrays.
-- | * `Foldable`, which provides a slew of functions for *folding* (also known
-- | as *reducing*) arrays down to one value. For example,
-- | `Data.Foldable.any` tests whether an array of `Boolean` values contains
-- | at least one `true`.
-- | `Data.Foldable.or` tests whether an array of `Boolean` values contains
-- | at least one `true` value.
-- | * `Traversable`, which provides the PureScript version of a for-loop,
-- | allowing you to iterate over an array and accumulate effects.
-- |
Expand Down