diff options
author | Eduardo Julian | 2022-06-27 02:25:56 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-27 02:25:56 -0400 |
commit | 3265f6a71723c100559eaea188d3762ceedce3b9 (patch) | |
tree | cc40dcba71869812a60227f454b7986a2a465043 /stdlib/source/documentation/lux/meta/symbol.lux | |
parent | f0c5b0eae885b73de243cb463b017a20cb47646d (diff) |
Extensible spliced un-quoting.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/documentation/lux/meta/symbol.lux | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/stdlib/source/documentation/lux/meta/symbol.lux b/stdlib/source/documentation/lux/meta/symbol.lux index 6bdb746c3..8189cdf71 100644 --- a/stdlib/source/documentation/lux/meta/symbol.lux +++ b/stdlib/source/documentation/lux/meta/symbol.lux @@ -1,7 +1,7 @@ (.require [library [lux (.except) - ["$" documentation (.only documentation:)] + ["$" documentation] [data [text (.only \n) ["%" \\format (.only format)]]] @@ -10,20 +10,18 @@ [\\library ["[0]" /]]) -(documentation: /.module - "The module part of a symbol.") - -(documentation: /.short - "The short part of a symbol.") - (.def .public documentation (.List $.Module) ($.module /._ "" - [..module - ..short - ($.default /.hash) + [($.default /.hash) ($.default /.equivalence) ($.default /.order) - ($.default /.codec)] + ($.default /.codec) + + ($.documentation /.module + "The module part of a symbol.") + + ($.documentation /.short + "The short part of a symbol.")] [])) |