aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/location.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/meta/location.lux')
-rw-r--r--stdlib/source/documentation/lux/meta/location.lux31
1 files changed, 16 insertions, 15 deletions
diff --git a/stdlib/source/documentation/lux/meta/location.lux b/stdlib/source/documentation/lux/meta/location.lux
index 9f587ef9e..e7e7ef30a 100644
--- a/stdlib/source/documentation/lux/meta/location.lux
+++ b/stdlib/source/documentation/lux/meta/location.lux
@@ -1,6 +1,6 @@
(.require
[library
- [lux (.except private)
+ [lux (.except)
["$" documentation]
[data
["[0]" text (.only \n)
@@ -8,19 +8,20 @@
[\\library
["[0]" /]])
-(.def .public documentation
- (.List $.Module)
- ($.module /._
- ""
- [($.definition /.equivalence)
- ($.definition /.dummy)
- ($.definition /.format)
+(def .public documentation
+ (List $.Documentation)
+ (list ($.module /._
+ "")
- ($.definition /.here
- "The Location of the current form."
- [(here)])
+ ($.definition /.equivalence)
+ ($.definition /.dummy)
+ ($.definition /.format)
- ($.definition /.with
- ""
- [(with location error)])]
- []))
+ ($.definition /.here
+ "The Location of the current form."
+ [(here)])
+
+ ($.definition /.with
+ ""
+ [(with location error)])
+ ))