aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/world/file/watch.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/world/file/watch.lux67
1 files changed, 34 insertions, 33 deletions
diff --git a/stdlib/source/documentation/lux/world/file/watch.lux b/stdlib/source/documentation/lux/world/file/watch.lux
index 397336094..7ef28a451 100644
--- a/stdlib/source/documentation/lux/world/file/watch.lux
+++ b/stdlib/source/documentation/lux/world/file/watch.lux
@@ -10,41 +10,42 @@
[\\library
["[0]" /]])
-(.def .public documentation
- (.List $.Module)
- (`` (`` ($.module /._
- ""
- [($.definition /.creation)
- ($.definition /.creation?)
- ($.definition /.modification)
- ($.definition /.modification?)
- ($.definition /.deletion)
- ($.definition /.deletion?)
- ($.definition /.all)
- ($.definition /.not_being_watched)
- ($.definition /.cannot_poll_a_non_existent_directory)
-
- ($.definition /.Concern
- "A particular concern to watch-out for.")
+(def .public documentation
+ (List $.Documentation)
+ (`` (`` (list ($.module /._
+ "")
- ($.definition /.and
- ""
- [(and left right)])
+ ($.definition /.creation)
+ ($.definition /.creation?)
+ ($.definition /.modification)
+ ($.definition /.modification?)
+ ($.definition /.deletion)
+ ($.definition /.deletion?)
+ ($.definition /.all)
+ ($.definition /.not_being_watched)
+ ($.definition /.cannot_poll_a_non_existent_directory)
+
+ ($.definition /.Concern
+ "A particular concern to watch-out for.")
- ($.definition (/.Watcher !)
- "Machinery for watching a file-system for changes to files and directories.")
+ ($.definition /.and
+ ""
+ [(and left right)])
- ($.definition /.polling
- (format "A simple watcher that works for any file-system."
- "Polls files and directories to detect changes.")
- [(polling fs)])
+ ($.definition (/.Watcher !)
+ "Machinery for watching a file-system for changes to files and directories.")
- ($.definition /.mock
- (format "A fake/emulated watcher."
- \n "Must be given a path separator for the file-system.")
- [(mock separator)])
+ ($.definition /.polling
+ (format "A simple watcher that works for any file-system."
+ "Polls files and directories to detect changes.")
+ [(polling fs)])
- (,, (for @.jvm (,, (these ($.definition /.default
- "The default watcher for the default file-system.")))
- (,, (these))))]
- []))))
+ ($.definition /.mock
+ (format "A fake/emulated watcher."
+ \n "Must be given a path separator for the file-system.")
+ [(mock separator)])
+
+ (,, (for @.jvm (,, (these ($.definition /.default
+ "The default watcher for the default file-system.")))
+ (,, (these))))
+ ))))