aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/math/number/int.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/math/number/int.lux')
-rw-r--r--stdlib/source/documentation/lux/math/number/int.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/documentation/lux/math/number/int.lux b/stdlib/source/documentation/lux/math/number/int.lux
index f7805842d..187cfd5e4 100644
--- a/stdlib/source/documentation/lux/math/number/int.lux
+++ b/stdlib/source/documentation/lux/math/number/int.lux
@@ -36,23 +36,23 @@
($.definition /.=
"Int(eger) equivalence."
- [(= reference sample)])
+ ($.example (= reference sample)))
($.definition /.<
"Int(eger) less-than."
- [(< reference sample)])
+ ($.example (< reference sample)))
($.definition /.<=
"Int(eger) less-than or equal."
- [(<= reference sample)])
+ ($.example (<= reference sample)))
($.definition /.>
"Int(eger) greater-than."
- [(> reference sample)])
+ ($.example (> reference sample)))
($.definition /.>=
"Int(eger) greater-than or equal."
- [(>= reference sample)])
+ ($.example (>= reference sample)))
(,, (with_template [<name> <doc>]
[($.definition <name>
@@ -86,7 +86,7 @@
($.definition /.mod
(format "Integer modulo."
\n "Note: The modulo and the remainder are not the same.")
- [(mod divisor dividend)])
+ ($.example (mod divisor dividend)))
($.definition /.gcd
"Greatest Common Divisor.")
@@ -99,5 +99,5 @@
($.definition /.right_shifted
"Signed/arithmetic bitwise right-shift."
- [(right_shifted parameter subject)])
+ ($.example (right_shifted parameter subject)))
)))