diff options
Diffstat (limited to 'stdlib/source/documentation/lux/math.lux')
-rw-r--r-- | stdlib/source/documentation/lux/math.lux | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/stdlib/source/documentation/lux/math.lux b/stdlib/source/documentation/lux/math.lux index 9d7ead48f..10bd8a1f3 100644 --- a/stdlib/source/documentation/lux/math.lux +++ b/stdlib/source/documentation/lux/math.lux @@ -1,21 +1,21 @@ (.using - [library - [lux {"-" char} - ["$" documentation {"+" documentation:}] - [data - [text - ["%" format {"+" format}]] - [collection - ["[0]" list]]]]] - ["[0]" / "_" - ["[1][0]" infix] - ["[1][0]" modulus] - ["[1][0]" modular] - ["[1][0]" number] - ["[1][0]" logic] - ["[1][0]" random]] - [\\library - ["[0]" /]]) + [library + [lux {"-" char} + ["$" documentation {"+" documentation:}] + [data + [text + ["%" format {"+" format}]] + [collection + ["[0]" list]]]]] + ["[0]" / "_" + ["[1][0]" infix] + ["[1][0]" modulus] + ["[1][0]" modular] + ["[1][0]" number] + ["[1][0]" logic] + ["[1][0]" random]] + [\\library + ["[0]" /]]) (documentation: /.e "The base of the natural logarithm.") @@ -30,9 +30,9 @@ "" [(pow param subject)]) -(documentation: /.atan/2 +(documentation: /.atan_2 "" - [(atan/2 x y)]) + [(atan_2 x y)]) (documentation: /.log_by "" @@ -46,7 +46,7 @@ ..pi ..tau ..pow - ..atan/2 + ..atan_2 ..log_by ($.default /.cos) ($.default /.sin) @@ -58,8 +58,8 @@ ($.default /.log) ($.default /.ceil) ($.default /.floor) - ($.default /.root/2) - ($.default /.root/3) + ($.default /.root_2) + ($.default /.root_3) ($.default /.round) ($.default /.factorial) ($.default /.hypotenuse) |