Skip to content

Commit

Permalink
Improve ma.modulo documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Aug 26, 2024
1 parent a28badb commit 069935a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -384,5 +384,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.4.3
Build Date UTC : 2024-08-10 16:13:33.175168+00:00
Build Date UTC : 2024-08-26 13:33:21.099567+00:00
-->
2 changes: 1 addition & 1 deletion docs/libs/maths/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ <h4 id="usage_42">Usage</h4>
</ul>
<hr />
<h3 id="mamodulo"><code>(ma.)modulo</code></h3>
<p>Modulus operation.</p>
<p>Modulus operation using the <code>(x%y+y)%y</code> formula to ensures the result is always non-negative, even if <code>x</code> is negative.</p>
<h4 id="usage_43">Usage</h4>
<pre><code>modulo(x,y) : _
</code></pre>
Expand Down
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

Binary file modified docs/sitemap.xml.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion maths.lib
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ decimal = frac;


//-------------------------------`(ma.)modulo`---------------------------------------
// Modulus operation.
// Modulus operation using the `(x%y+y)%y` formula to ensures the result is always non-negative, even if `x` is negative.
//
// #### Usage
//
Expand Down

0 comments on commit 069935a

Please sign in to comment.