aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-12-29 14:48:49 -0500
committerGitHub <noreply@github.com>2021-12-29 14:48:49 -0500
commit0e712c530bf385996de32e2e29a39038ee3b62c0 (patch)
treeafb15dcf924294d5d94b7694858cd892cdbd0040
parentd58677125a88fcba78d1ac047b88043f6eca2489 (diff)
parent9b98b817c158e90d7bac5ecc38db8635b42f0961 (diff)
Merge pull request #51 from adregan/arithmetic-doc-typo
Correct typo in the additional arithmetic doc
-rw-r--r--doc/arithmetic.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/arithmetic.md b/doc/arithmetic.md
index 60378ce7..86338bca 100644
--- a/doc/arithmetic.md
+++ b/doc/arithmetic.md
@@ -124,7 +124,7 @@ Now the monadic function symbols resemble those used in mathematics. In the case
Floor (`⌊`) returns the largest integer less than or equal to the argument, and Ceiling (`⌈`) returns the smallest one greater than or equal to it. For this purpose `¯∞` and `∞` are treated as integers, so that the floor or ceiling of an infinity is itself. Absolute value removes the argument's sign by negating it if it is less than 0, so that its result is always non-negative.
-Minimum (`⌊`) returns the larger of its two arguments, and Maximum (`⌈`) returns the smaller. These functions are loosely related to Floor and Ceiling in their use of comparison, and can be defined similarly: for example, the minimum of two numbers of the largest number less than or equal to both of them. To take the minimum or maximum of an entire list, use a [fold](fold.md).
+Minimum (`⌊`) returns the smaller of its two arguments, and Maximum (`⌈`) returns the larger. These functions are loosely related to Floor and Ceiling in their use of comparison, and can be defined similarly: for example, the minimum of two numbers is the largest number less than or equal to both of them. To take the minimum or maximum of an entire list, use a [fold](fold.md).
3 ⌊ ↕8