aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation
diff options
context:
space:
mode:
authorEduardo Julian2022-03-30 21:25:53 -0400
committerEduardo Julian2022-03-30 21:25:53 -0400
commit8eb86ed366b2305751f2e831c7a081ffcca82c89 (patch)
treef8da5967f61d115414b3655dd9045cef370c8d5b /stdlib/source/documentation
parent4326d69ab717683449bf37bf8dd170c83455c0c0 (diff)
De-sigil-ification: /
Diffstat (limited to 'stdlib/source/documentation')
-rw-r--r--stdlib/source/documentation/lux/control/concatenative.lux24
-rw-r--r--stdlib/source/documentation/lux/control/parser/binary.lux84
-rw-r--r--stdlib/source/documentation/lux/data/binary.lux68
-rw-r--r--stdlib/source/documentation/lux/data/collection/list.lux50
-rw-r--r--stdlib/source/documentation/lux/data/format/binary.lux52
-rw-r--r--stdlib/source/documentation/lux/data/text.lux40
-rw-r--r--stdlib/source/documentation/lux/data/text/format.lux46
-rw-r--r--stdlib/source/documentation/lux/math.lux44
-rw-r--r--stdlib/source/documentation/lux/math/number/complex.lux22
-rw-r--r--stdlib/source/documentation/lux/target/js.lux8
-rw-r--r--stdlib/source/documentation/lux/target/lua.lux12
-rw-r--r--stdlib/source/documentation/lux/target/python.lux28
-rw-r--r--stdlib/source/documentation/lux/target/ruby.lux28
-rw-r--r--stdlib/source/documentation/lux/world/output/video/resolution.lux13
14 files changed, 259 insertions, 260 deletions
diff --git a/stdlib/source/documentation/lux/control/concatenative.lux b/stdlib/source/documentation/lux/control/concatenative.lux
index 93dd86efa..d56a9f513 100644
--- a/stdlib/source/documentation/lux/control/concatenative.lux
+++ b/stdlib/source/documentation/lux/control/concatenative.lux
@@ -44,7 +44,7 @@
(=> [Nat] [Nat])
dup
- (apply/2 n.*))])
+ (apply_2 n.*))])
(documentation: /.apply
"A generator for functions that turn arity N functions into arity N concatenative functions."
@@ -52,7 +52,7 @@
((apply 1) ++))])
(template [<arity>]
- [(with_expansions [<name> (template.symbol [/._] ["apply/" <arity>])
+ [(with_expansions [<name> (template.symbol [/._] ["apply_" <arity>])
<doc> (template.text ["Lift a function of arity " <arity>
" into a concatenative function of arity " <arity> "."])]
(documentation: <name>
@@ -158,7 +158,7 @@
(documentation: /.dip
"Executes a block on the stack, save for the topmost value.")
-(documentation: /.dip/2
+(documentation: /.dip_2
"Executes a block on the stack, save for the 2 topmost values.")
(documentation: /.do
@@ -211,14 +211,14 @@
..||>
..word:
..apply
- ..apply/1
- ..apply/2
- ..apply/3
- ..apply/4
- ..apply/5
- ..apply/6
- ..apply/7
- ..apply/8
+ ..apply_1
+ ..apply_2
+ ..apply_3
+ ..apply_4
+ ..apply_5
+ ..apply_6
+ ..apply_7
+ ..apply_8
..push
..drop
..nip
@@ -233,7 +233,7 @@
..call
..loop
..dip
- ..dip/2
+ ..dip_2
..do
..while
..compose
diff --git a/stdlib/source/documentation/lux/control/parser/binary.lux b/stdlib/source/documentation/lux/control/parser/binary.lux
index 798ac286c..0a163f2a8 100644
--- a/stdlib/source/documentation/lux/control/parser/binary.lux
+++ b/stdlib/source/documentation/lux/control/parser/binary.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux {"-" list}
- ["$" documentation {"+" documentation:}]
- [data
- [text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" list}
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: /.Offset
"An offset for reading within binary data.")
@@ -46,30 +46,30 @@
[(documentation: <name>
(format "Parses a block of data prefixed with a size that is " (%.nat <size>) " bytes long."))]
- [08 /.binary/8]
- [16 /.binary/16]
- [32 /.binary/32]
- [64 /.binary/64]
+ [08 /.binary_8]
+ [16 /.binary_16]
+ [32 /.binary_32]
+ [64 /.binary_64]
)
(template [<size> <name>]
[(documentation: <name>
(format "Parses a block of (UTF-8 encoded) text prefixed with a size that is " (%.nat <size>) " bytes long."))]
- [08 /.utf8/8]
- [16 /.utf8/16]
- [32 /.utf8/32]
- [64 /.utf8/64]
+ [08 /.utf8_8]
+ [16 /.utf8_16]
+ [32 /.utf8_32]
+ [64 /.utf8_64]
)
(template [<size> <name>]
[(documentation: <name>
(format "Parses a sequence of values prefixed with a size that is " (%.nat <size>) " bytes long."))]
- [08 /.sequence/8]
- [16 /.sequence/16]
- [32 /.sequence/32]
- [64 /.sequence/64]
+ [08 /.sequence_8]
+ [16 /.sequence_16]
+ [32 /.sequence_32]
+ [64 /.sequence_64]
)
(documentation: /.list
@@ -95,32 +95,32 @@
..any
..segment
- ..binary/8
- ..binary/16
- ..binary/32
- ..binary/64
+ ..binary_8
+ ..binary_16
+ ..binary_32
+ ..binary_64
- ..utf8/8
- ..utf8/16
- ..utf8/32
- ..utf8/64
+ ..utf8_8
+ ..utf8_16
+ ..utf8_32
+ ..utf8_64
- ..sequence/8
- ..sequence/16
- ..sequence/32
- ..sequence/64
+ ..sequence_8
+ ..sequence_16
+ ..sequence_32
+ ..sequence_64
..list
..set
($.default /.binary_was_not_fully_read)
- ($.default /.size/8)
- ($.default /.size/16)
- ($.default /.size/32)
- ($.default /.size/64)
- ($.default /.bits/8)
- ($.default /.bits/16)
- ($.default /.bits/32)
- ($.default /.bits/64)
+ ($.default /.size_8)
+ ($.default /.size_16)
+ ($.default /.size_32)
+ ($.default /.size_64)
+ ($.default /.bits_8)
+ ($.default /.bits_16)
+ ($.default /.bits_32)
+ ($.default /.bits_64)
($.default /.nat)
($.default /.int)
($.default /.rev)
diff --git a/stdlib/source/documentation/lux/data/binary.lux b/stdlib/source/documentation/lux/data/binary.lux
index 2bb9dd97f..1bc5e4146 100644
--- a/stdlib/source/documentation/lux/data/binary.lux
+++ b/stdlib/source/documentation/lux/data/binary.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux "*"
- ["$" documentation {"+" documentation:}]
- [data
- [text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux "*"
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: /.Binary
"A binary BLOB of data.")
@@ -21,37 +21,37 @@
""
[(aggregate f init binary)])
-(documentation: /.read/8!
+(documentation: /.read_8!
"Read 1 byte (8 bits) at the given index."
- [(read/8! index binary)])
+ [(read_8! index binary)])
-(documentation: /.read/16!
+(documentation: /.read_16!
"Read 2 bytes (16 bits) at the given index."
- [(read/16! index binary)])
+ [(read_16! index binary)])
-(documentation: /.read/32!
+(documentation: /.read_32!
"Read 4 bytes (32 bits) at the given index."
- [(read/32! index binary)])
+ [(read_32! index binary)])
-(documentation: /.read/64!
+(documentation: /.read_64!
"Read 8 bytes (64 bits) at the given index."
- [(read/64! index binary)])
+ [(read_64! index binary)])
-(documentation: /.write/8!
+(documentation: /.write_8!
"Write 1 byte (8 bits) at the given index."
- [(write/8! index value binary)])
+ [(write_8! index value binary)])
-(documentation: /.write/16!
+(documentation: /.write_16!
"Write 2 bytes (16 bits) at the given index."
- [(write/16! index value binary)])
+ [(write_16! index value binary)])
-(documentation: /.write/32!
+(documentation: /.write_32!
"Write 4 bytes (32 bits) at the given index."
- [(write/32! index value binary)])
+ [(write_32! index value binary)])
-(documentation: /.write/64!
+(documentation: /.write_64!
"Write 8 bytes (64 bits) at the given index."
- [(write/64! index value binary)])
+ [(write_64! index value binary)])
(documentation: /.copy
"Mutates the target binary BLOB by copying bytes from the source BLOB to it."
@@ -72,14 +72,14 @@
[..Binary
..empty
..aggregate
- ..read/8!
- ..read/16!
- ..read/32!
- ..read/64!
- ..write/8!
- ..write/16!
- ..write/32!
- ..write/64!
+ ..read_8!
+ ..read_16!
+ ..read_32!
+ ..read_64!
+ ..write_8!
+ ..write_16!
+ ..write_32!
+ ..write_64!
..copy
..slice
..after
diff --git a/stdlib/source/documentation/lux/data/collection/list.lux b/stdlib/source/documentation/lux/data/collection/list.lux
index 2aa968d1c..5497350e7 100644
--- a/stdlib/source/documentation/lux/data/collection/list.lux
+++ b/stdlib/source/documentation/lux/data/collection/list.lux
@@ -1,19 +1,19 @@
(.using
- [library
- [lux "*"
- ["$" documentation {"+" documentation:}]
- [control
- ["<>" parser
- ["<[0]>" code]]]
- [data
- ["[0]" text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- [syntax {"+" syntax:}]
- ["[0]" code]
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux "*"
+ ["$" documentation {"+" documentation:}]
+ [control
+ ["<>" parser
+ ["<[0]>" code]]]
+ [data
+ ["[0]" text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ [syntax {"+" syntax:}]
+ ["[0]" code]
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: /.mixes
""
@@ -105,16 +105,16 @@
(documentation: /.zipped
"Create list zippers with the specified number of input lists."
- [(def: zipped/2 (zipped 2))
- (def: zipped/3 (zipped 3))
- (zipped/3 xs ys zs)
+ [(def: zipped_2 (zipped 2))
+ (def: zipped_3 (zipped 3))
+ (zipped_3 xs ys zs)
((zipped 3) xs ys zs)])
(documentation: /.zipped_with
"Create list zippers with the specified number of input lists."
- [(def: zipped_with/2 (zipped_with 2))
- (def: zipped_with/3 (zipped_with 3))
- (zipped_with/2 + xs ys)
+ [(def: zipped_with_2 (zipped_with 2))
+ (def: zipped_with_3 (zipped_with 3))
+ (zipped_with_2 + xs ys)
((zipped_with 2) + xs ys)])
(documentation: /.last
@@ -194,10 +194,10 @@
($.default /.functor)
($.default /.apply)
($.default /.monad)
- ($.default /.zipped/2)
- ($.default /.zipped/3)
- ($.default /.zipped_with/2)
- ($.default /.zipped_with/3)
+ ($.default /.zipped_2)
+ ($.default /.zipped_3)
+ ($.default /.zipped_with_2)
+ ($.default /.zipped_with_3)
($.default /.first)
($.default /.after)
($.default /.while)
diff --git a/stdlib/source/documentation/lux/data/format/binary.lux b/stdlib/source/documentation/lux/data/format/binary.lux
index 4eb84ccd1..497de2dba 100644
--- a/stdlib/source/documentation/lux/data/format/binary.lux
+++ b/stdlib/source/documentation/lux/data/format/binary.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux {"-" nat int rev list type or and symbol}
- ["$" documentation {"+" documentation:}]
- [data
- [text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" nat int rev list type or and symbol}
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: /.Mutation
"A mutation of binary data, tracking where in the data to transform.")
@@ -60,29 +60,29 @@
..rec
..segment
($.default /.monoid)
- ($.default /.bits/8)
- ($.default /.bits/16)
- ($.default /.bits/32)
- ($.default /.bits/64)
+ ($.default /.bits_8)
+ ($.default /.bits_16)
+ ($.default /.bits_32)
+ ($.default /.bits_64)
($.default /.any)
($.default /.bit)
($.default /.nat)
($.default /.int)
($.default /.rev)
($.default /.frac)
- ($.default /.binary/8)
- ($.default /.binary/16)
- ($.default /.binary/32)
- ($.default /.binary/64)
- ($.default /.utf8/8)
- ($.default /.utf8/16)
- ($.default /.utf8/32)
- ($.default /.utf8/64)
+ ($.default /.binary_8)
+ ($.default /.binary_16)
+ ($.default /.binary_32)
+ ($.default /.binary_64)
+ ($.default /.utf8_8)
+ ($.default /.utf8_16)
+ ($.default /.utf8_32)
+ ($.default /.utf8_64)
($.default /.text)
- ($.default /.sequence/8)
- ($.default /.sequence/16)
- ($.default /.sequence/32)
- ($.default /.sequence/64)
+ ($.default /.sequence_8)
+ ($.default /.sequence_16)
+ ($.default /.sequence_32)
+ ($.default /.sequence_64)
($.default /.maybe)
($.default /.list)
($.default /.set)
diff --git a/stdlib/source/documentation/lux/data/text.lux b/stdlib/source/documentation/lux/data/text.lux
index 7163b5416..94886667c 100644
--- a/stdlib/source/documentation/lux/data/text.lux
+++ b/stdlib/source/documentation/lux/data/text.lux
@@ -1,21 +1,21 @@
(.using
- [library
- [lux {"-" char}
- ["$" documentation {"+" documentation:}]
- [data
- [text
- ["%" format {"+" format}]]
- [collection
- ["[0]" list]]]]]
- ["[0]" / "_"
- ["[1][0]" buffer]
- ["[1][0]" encoding]
- ["[1][0]" escape]
- ["[1][0]" format]
- ["[1][0]" regex]
- ["[1][0]" unicode]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" char}
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text
+ ["%" format {"+" format}]]
+ [collection
+ ["[0]" list]]]]]
+ ["[0]" / "_"
+ ["[1][0]" buffer]
+ ["[1][0]" encoding]
+ ["[1][0]" escape]
+ ["[1][0]" format]
+ ["[1][0]" regex]
+ ["[1][0]" unicode]]
+ [\\library
+ ["[0]" /]])
(documentation: /.Char
"A character code number.")
@@ -91,9 +91,9 @@
""
[(all_split_by token sample)])
-(documentation: /.replaced/1
+(documentation: /.replaced_once
""
- [(replaced/1 pattern replacement template)])
+ [(replaced_once pattern replacement template)])
(documentation: /.replaced
""
@@ -130,7 +130,7 @@
..split_at
..split_by
..all_split_by
- ..replaced/1
+ ..replaced_once
..replaced
..interposed
..space?
diff --git a/stdlib/source/documentation/lux/data/text/format.lux b/stdlib/source/documentation/lux/data/text/format.lux
index 3ef040ea8..7cf561034 100644
--- a/stdlib/source/documentation/lux/data/text/format.lux
+++ b/stdlib/source/documentation/lux/data/text/format.lux
@@ -1,11 +1,11 @@
(.using
- [library
- [lux {"-" nat int rev type list symbol}
- ["$" documentation {"+" documentation:}]
- [macro
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" nat int rev type list symbol}
+ ["$" documentation {"+" documentation:}]
+ [macro
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: (/.Format it)
"A way to produce readable text from values.")
@@ -45,22 +45,22 @@
($.default /.xml)
($.default /.json)
- ($.default /.nat/2)
- ($.default /.nat/8)
- ($.default /.nat/10)
- ($.default /.nat/16)
- ($.default /.int/2)
- ($.default /.int/8)
- ($.default /.int/10)
- ($.default /.int/16)
- ($.default /.rev/2)
- ($.default /.rev/8)
- ($.default /.rev/10)
- ($.default /.rev/16)
- ($.default /.frac/2)
- ($.default /.frac/8)
- ($.default /.frac/10)
- ($.default /.frac/16)
+ ($.default /.nat_2)
+ ($.default /.nat_8)
+ ($.default /.nat_10)
+ ($.default /.nat_16)
+ ($.default /.int_2)
+ ($.default /.int_8)
+ ($.default /.int_10)
+ ($.default /.int_16)
+ ($.default /.rev_2)
+ ($.default /.rev_8)
+ ($.default /.rev_10)
+ ($.default /.rev_16)
+ ($.default /.frac_2)
+ ($.default /.frac_8)
+ ($.default /.frac_10)
+ ($.default /.frac_16)
($.default /.mod)
($.default /.list)
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)
diff --git a/stdlib/source/documentation/lux/math/number/complex.lux b/stdlib/source/documentation/lux/math/number/complex.lux
index b3d2799b6..fd912cd57 100644
--- a/stdlib/source/documentation/lux/math/number/complex.lux
+++ b/stdlib/source/documentation/lux/math/number/complex.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux {"-" private}
- ["$" documentation {"+" documentation:}]
- [data
- ["[0]" text {"+" \n}
- ["%" format {"+" format}]]]
- [macro
- ["[0]" template]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" private}
+ ["$" documentation {"+" documentation:}]
+ [data
+ ["[0]" text {"+" \n}
+ ["%" format {"+" format}]]]
+ [macro
+ ["[0]" template]]]]
+ [\\library
+ ["[0]" /]])
(documentation: /.Complex
"A complex number.")
@@ -53,7 +53,7 @@
($.default /.log)
($.default /.pow)
($.default /.pow')
- ($.default /.root/2)
+ ($.default /.root_2)
($.default /.reciprocal)
($.default /.acos)
($.default /.asin)
diff --git a/stdlib/source/documentation/lux/target/js.lux b/stdlib/source/documentation/lux/target/js.lux
index 4a87b312a..5f1a28577 100644
--- a/stdlib/source/documentation/lux/target/js.lux
+++ b/stdlib/source/documentation/lux/target/js.lux
@@ -34,7 +34,7 @@
($.default /.var)
($.default /.at)
($.default /.the)
- ($.default /.apply/*)
+ ($.default /.apply_*)
($.default /.do)
($.default /.object)
($.default /.,)
@@ -94,8 +94,8 @@
($.default /.comment)
($.default /.switch)
($.default /.cond)
- ($.default /.apply/1)
+ ($.default /.apply_1)
($.default /.not_a_number?)
- ($.default /.apply/2)
- ($.default /.apply/3)]
+ ($.default /.apply_2)
+ ($.default /.apply_3)]
[]))
diff --git a/stdlib/source/documentation/lux/target/lua.lux b/stdlib/source/documentation/lux/target/lua.lux
index c9926ba4e..d0ce0ef3e 100644
--- a/stdlib/source/documentation/lux/target/lua.lux
+++ b/stdlib/source/documentation/lux/target/lua.lux
@@ -38,7 +38,7 @@
($.default /.item)
($.default /.the)
($.default /.length)
- ($.default /.apply/*)
+ ($.default /.apply_*)
($.default /.do)
($.default /.=)
($.default /.<)
@@ -84,11 +84,11 @@
($.default /.set_label)
($.default /.go_to)
($.default /.cond)
- ($.default /.apply/1)
- ($.default /.apply/2)
- ($.default /.apply/3)
- ($.default /.apply/4)
- ($.default /.apply/5)
+ ($.default /.apply_1)
+ ($.default /.apply_2)
+ ($.default /.apply_3)
+ ($.default /.apply_4)
+ ($.default /.apply_5)
($.default /.error/1)
($.default /.print/1)
($.default /.require/1)
diff --git a/stdlib/source/documentation/lux/target/python.lux b/stdlib/source/documentation/lux/target/python.lux
index 54bd826f4..eeba814ae 100644
--- a/stdlib/source/documentation/lux/target/python.lux
+++ b/stdlib/source/documentation/lux/target/python.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux {"-" char}
- ["$" documentation {"+" documentation:}]
- [data
- [text {"+" \n}
- ["%" format {"+" format}]]
- [collection
- ["[0]" list]]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" char}
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]
+ [collection
+ ["[0]" list]]]]]
+ [\\library
+ ["[0]" /]])
(.def: .public documentation
(.List $.Module)
@@ -49,7 +49,7 @@
($.default /.slice)
($.default /.slice_from)
($.default /.dict)
- ($.default /.apply/*)
+ ($.default /.apply_*)
($.default /.apply_poly)
($.default /.apply_keyword)
($.default /.the)
@@ -102,9 +102,9 @@
($.default /.import)
($.default /.comment)
($.default /.cond)
- ($.default /.apply/1)
- ($.default /.apply/2)
- ($.default /.apply/3)
+ ($.default /.apply_1)
+ ($.default /.apply_2)
+ ($.default /.apply_3)
($.default /.str/1)
($.default /.ord/1)
($.default /.float/1)
diff --git a/stdlib/source/documentation/lux/target/ruby.lux b/stdlib/source/documentation/lux/target/ruby.lux
index 49f3f0910..7d7d5458f 100644
--- a/stdlib/source/documentation/lux/target/ruby.lux
+++ b/stdlib/source/documentation/lux/target/ruby.lux
@@ -1,14 +1,14 @@
(.using
- [library
- [lux {"-" char}
- ["$" documentation {"+" documentation:}]
- [data
- [text {"+" \n}
- ["%" format {"+" format}]]
- [collection
- ["[0]" list]]]]]
- [\\library
- ["[0]" /]])
+ [library
+ [lux {"-" char}
+ ["$" documentation {"+" documentation:}]
+ [data
+ [text {"+" \n}
+ ["%" format {"+" format}]]
+ [collection
+ ["[0]" list]]]]]
+ [\\library
+ ["[0]" /]])
(.def: .public documentation
(.List $.Module)
@@ -61,7 +61,7 @@
($.default /.array_range)
($.default /.array)
($.default /.hash)
- ($.default /.apply/*)
+ ($.default /.apply_*)
($.default /.apply_lambda/*)
($.default /.the)
($.default /.item)
@@ -106,9 +106,9 @@
($.default /.comment)
($.default /.do)
($.default /.cond)
- ($.default /.apply/1)
- ($.default /.apply/2)
- ($.default /.apply/3)
+ ($.default /.apply_1)
+ ($.default /.apply_2)
+ ($.default /.apply_3)
($.default /.print/1)
($.default /.require/1)
($.default /.print/2)
diff --git a/stdlib/source/documentation/lux/world/output/video/resolution.lux b/stdlib/source/documentation/lux/world/output/video/resolution.lux
index 0a75bb938..27a42050c 100644
--- a/stdlib/source/documentation/lux/world/output/video/resolution.lux
+++ b/stdlib/source/documentation/lux/world/output/video/resolution.lux
@@ -19,7 +19,6 @@
(template [<name>]
[(documentation: <name>
(let [name (|> (template.text [<name>])
- (text.replaced "/" " ")
(text.replaced "_" " ")
text.upper_cased)]
(format name " resolution: "
@@ -31,9 +30,9 @@
[/.wsvga]
[/.xga]
[/.xga+]
- [/.wxga/16:9]
- [/.wxga/5:3]
- [/.wxga/16:10]
+ [/.wxga_16:9]
+ [/.wxga_5:3]
+ [/.wxga_16:10]
[/.sxga]
[/.wxga+]
[/.hd+]
@@ -53,9 +52,9 @@
..wsvga
..xga
..xga+
- ..wxga/16:9
- ..wxga/5:3
- ..wxga/16:10
+ ..wxga_16:9
+ ..wxga_5:3
+ ..wxga_16:10
..sxga
..wxga+
..hd+