aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/extension.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/meta/extension.lux')
-rw-r--r--stdlib/source/documentation/lux/meta/extension.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/documentation/lux/meta/extension.lux b/stdlib/source/documentation/lux/meta/extension.lux
index e0ce6b4b0..f27a7c7a0 100644
--- a/stdlib/source/documentation/lux/meta/extension.lux
+++ b/stdlib/source/documentation/lux/meta/extension.lux
@@ -29,23 +29,23 @@
($.definition /.analysis
"Mechanism for defining extensions to Lux's analysis/type-checking infrastructure."
- [(analysis ("my analysis" self phase archive [pass_through <code>.any])
- (phase archive pass_through))])
+ ($.example (analysis ("my analysis" self phase archive [pass_through <code>.any])
+ (phase archive pass_through))))
($.definition /.synthesis
"Mechanism for defining extensions to Lux's synthesis/optimization infrastructure."
- [(synthesis ("my synthesis" self phase archive [pass_through <analysis>.any])
- (phase archive pass_through))])
+ ($.example (synthesis ("my synthesis" self phase archive [pass_through <analysis>.any])
+ (phase archive pass_through))))
($.definition /.generation
""
- [(generation ("my generation" self phase archive [pass_through <synthesis>.any])
- (phase archive pass_through))])
+ ($.example (generation ("my generation" self phase archive [pass_through <synthesis>.any])
+ (phase archive pass_through))))
($.definition /.declaration
""
- [(declaration ("my declaration" self phase archive [parameters (<>.some <code>.any)])
- (do phase.monad
- [.let [_ (debug.log! (format "Successfully installed declaration " (%.text self) "!"))]]
- (in declaration.no_requirements)))])
+ ($.example (declaration ("my declaration" self phase archive [parameters (<>.some <code>.any)])
+ (do phase.monad
+ [.let [_ (debug.log! (format "Successfully installed declaration " (%.text self) "!"))]]
+ (in declaration.no_requirements)))))
))