aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/macro/code.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/macro/code.lux')
-rw-r--r--stdlib/source/library/lux/macro/code.lux7
1 files changed, 3 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/macro/code.lux b/stdlib/source/library/lux/macro/code.lux
index 7e09ceb96..79eebb5df 100644
--- a/stdlib/source/library/lux/macro/code.lux
+++ b/stdlib/source/library/lux/macro/code.lux
@@ -53,14 +53,13 @@
[record (List [Code Code]) #.Record]
)
-(template [<name> <tag> <doc>]
+(template [<name> <tag>]
[(def: .public (<name> name)
- {#.doc <doc>}
(-> Text Code)
[location.dummy (<tag> ["" name])])]
- [local_identifier #.Identifier "Produces a local identifier (an identifier with no module prefix)."]
- [local_tag #.Tag "Produces a local tag (a tag with no module prefix)."])
+ [local_identifier #.Identifier]
+ [local_tag #.Tag])
(implementation: .public equivalence
(Equivalence Code)