aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/world/file.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/world/file.lux')
-rw-r--r--stdlib/source/lux/world/file.lux21
1 files changed, 12 insertions, 9 deletions
diff --git a/stdlib/source/lux/world/file.lux b/stdlib/source/lux/world/file.lux
index 9758d7e44..acaa2c244 100644
--- a/stdlib/source/lux/world/file.lux
+++ b/stdlib/source/lux/world/file.lux
@@ -1,20 +1,23 @@
(.module:
[lux #*
[control
- [monad (#+ Monad do)]
+ ["." monad (#+ Monad do)]
["ex" exception (#+ Exception exception:)]
pipe]
[data
- [error (#+ Error)]
- text/format
- [collection [array]]]
+ ["." error (#+ Error)]
+ [text
+ format]
+ [collection
+ ["." array]]]
[time
- [instant (#+ Instant)]
- [duration]]
- [world [blob (#+ Blob)]]
- [io (#+ Process)]
+ ["." instant (#+ Instant)]
+ ["." duration]]
+ [world
+ ["." blob (#+ Blob)]]
+ ["." io (#+ Process)]
[host (#+ import:)]
- [language/host]])
+ ["." language/host]])
(type: #export File Text)