aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-12-29 14:49:46 -0500
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-12-29 14:49:46 -0500
commitdf36b6fab45533c4c495edacf0aa848385c1a664 (patch)
treee61df2bea89ddf668366d53e70eaffba24213426 /docs
parent0e712c530bf385996de32e2e29a39038ee3b62c0 (diff)
Re-generate arithmetic doc
Diffstat (limited to 'docs')
-rw-r--r--docs/doc/arithmetic.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/doc/arithmetic.html b/docs/doc/arithmetic.html
index e78314b4..0ae6824c 100644
--- a/docs/doc/arithmetic.html
+++ b/docs/doc/arithmetic.html
@@ -187,7 +187,7 @@
⟨ ∞ 6 0 2 ⟩
</pre>
<p>Floor (<code><span class='Function'>⌊</span></code>) returns the largest integer less than or equal to the argument, and Ceiling (<code><span class='Function'>⌈</span></code>) returns the smallest one greater than or equal to it. For this purpose <code><span class='Number'>¯∞</span></code> and <code><span class='Number'>∞</span></code> 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.</p>
-<p>Minimum (<code><span class='Function'>⌊</span></code>) returns the larger of its two arguments, and Maximum (<code><span class='Function'>⌈</span></code>) 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 <a href="fold.html">fold</a>.</p>
+<p>Minimum (<code><span class='Function'>⌊</span></code>) returns the smaller of its two arguments, and Maximum (<code><span class='Function'>⌈</span></code>) 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 <a href="fold.html">fold</a>.</p>
<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=MyDijIog4oaVOAoK4oy94oq44oyIIOKGlTg=">↗️</a><pre> <span class='Number'>3</span> <span class='Function'>⌊</span> <span class='Function'>↕</span><span class='Number'>8</span>
⟨ 0 1 2 3 3 3 3 3 ⟩