Skip to content

Commit

Permalink
Merge pull request #71 from mathmetal/patch-1
Browse files Browse the repository at this point in the history
Slightly improved the line on quantifiers.
  • Loading branch information
chrisvoncsefalvay committed Feb 23, 2021
2 parents e6a002f + 86ab0ad commit ffa3a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _chapters/07-ex4.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ For mutable indexable collections, such as arrays, you can use `sort!()`, which

#### `all()` and `any()`

`all()` and `any()` implement two of the mathematical concepts known as _quantifiers_, with `all()` representing the universal quantifier `\forall`, while `any()` implements the existential quantifier. These functions test whether all or any, respectively, of a collection satisfies a certain criterion, and return a single truth value.
`all()` and `any()` implement two of the mathematical concepts known as _quantifiers_, with `all()` representing the universal quantifier $$\forall$$, while `any()` implements the existential quantifier $$\exists$$. These functions test whether all or any elements, respectively, of a collection satisfies a certain criterion, and return a single truth value.

#### Existence of a particular value

Expand Down

0 comments on commit ffa3a91

Please sign in to comment.