diff options
author | Eduardo Julian | 2022-04-08 21:32:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-08 21:32:38 -0400 |
commit | 120ebb44dbb1a20fc150e5e58099f90be2e61d49 (patch) | |
tree | 32bcc24d1a48989faf4207bbce423c483b9ce1ba /stdlib/source/documentation/lux/math/random.lux | |
parent | 0d909187d5b9effcd08f533d50af7d29c0d6bfd8 (diff) |
Better names for random text/character generators.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/documentation/lux/math/random.lux | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/stdlib/source/documentation/lux/math/random.lux b/stdlib/source/documentation/lux/math/random.lux index 3e3e122c7..258de2631 100644 --- a/stdlib/source/documentation/lux/math/random.lux +++ b/stdlib/source/documentation/lux/math/random.lux @@ -1,14 +1,14 @@ (.using - [library - [lux {"-" or and nat int rev} - ["$" documentation {"+" documentation:}] - [data - ["[0]" text {"+" \n} - ["%" format {"+" format}]]] - [macro - ["[0]" template]]]] - [\\library - ["[0]" /]]) + [library + [lux {"-" or and nat int rev} + ["$" documentation {"+" documentation:}] + [data + ["[0]" text {"+" \n} + ["%" format {"+" format}]]] + [macro + ["[0]" template]]]] + [\\library + ["[0]" /]]) (documentation: /.PRNG "An abstract way to represent any PRNG.") @@ -114,11 +114,11 @@ ($.default /.unicode) ($.default /.ascii) - ($.default /.ascii/alpha) - ($.default /.ascii/alpha_num) - ($.default /.ascii/numeric) - ($.default /.ascii/upper) - ($.default /.ascii/lower) + ($.default /.alphabetic) + ($.default /.alpha_numeric) + ($.default /.numeric) + ($.default /.upper_case) + ($.default /.lower_case) ($.default /.ratio) ($.default /.complex) |