Skip to content

Commit

Permalink
fix doc example for all(). closes #6143
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Mar 13, 2014
1 parent 48ac426 commit a49856e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/stdlib/base.rst
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ Iterable Collections

Determine whether predicate ``p`` returns true for all elements of ``itr``.

**Example**: ``all((i) -> i>i, [4,5,6]) = true``
**Example**: ``all(i->(4<=i<=6), [4,5,6]) = true``

.. function:: map(f, c...) -> collection

Expand Down

0 comments on commit a49856e

Please sign in to comment.