diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/documentation/lux/static.lux | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/stdlib/source/documentation/lux/static.lux b/stdlib/source/documentation/lux/static.lux index 64eb9c9b5..8f7789b25 100644 --- a/stdlib/source/documentation/lux/static.lux +++ b/stdlib/source/documentation/lux/static.lux @@ -12,10 +12,9 @@ (template [<name> <type>] [(documentation: <name> - "" - [(<name> - (: <type> - (value generating expression)))])] + (%.code (' (<name> + (: <type> + (value generating expression))))))] [/.nat .Nat] [/.int .Int] @@ -34,9 +33,8 @@ (template [<name> <type>] [(documentation: <name> - "" - [(: <type> - (<name>))])] + (%.code (' (: <type> + (<name>)))))] [/.random_nat .Nat] [/.random_int .Int] |