aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDuncan Regan <duncanregan@gmail.com>2021-12-29 13:24:31 -0500
committerDuncan Regan <duncanregan@gmail.com>2021-12-29 13:26:20 -0500
commit9b98b817c158e90d7bac5ecc38db8635b42f0961 (patch)
treeafb15dcf924294d5d94b7694858cd892cdbd0040 /doc
parentd58677125a88fcba78d1ac047b88043f6eca2489 (diff)
Correct typo in the additional arithmetic doc
Swapping larger and smaller here to match the appropriate functions. Also replacing an errant "of" with an "is"
Diffstat (limited to '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