aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/world/shell.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-25 16:47:50 -0400
committerEduardo Julian2021-08-25 16:47:50 -0400
commitb216900093c905b3b20dd45c69e577b192e2f7a3 (patch)
tree4d6ac7d257752a8c54ca77dd58df9753ce357ab6 /stdlib/source/library/lux/world/shell.lux
parent36303d6cb2ce3ab9e36d045b9516c997bd461862 (diff)
Updates to the Lua compiler.
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/world/shell.lux9
1 files changed, 0 insertions, 9 deletions
diff --git a/stdlib/source/library/lux/world/shell.lux b/stdlib/source/library/lux/world/shell.lux
index 209c161bd..470ac4cd2 100644
--- a/stdlib/source/library/lux/world/shell.lux
+++ b/stdlib/source/library/lux/world/shell.lux
@@ -34,7 +34,6 @@
[file (#+ Path)]])
(type: .public Exit
- {#.doc (example "A program exit code.")}
Int)
(template [<code> <name>]
@@ -47,8 +46,6 @@
)
(interface: .public (Process !)
- {#.doc (example "The means for communicating with a program/process being executed by the operating system.")}
-
(: (-> [] (! (Try Text)))
read)
(: (-> [] (! (Try Text)))
@@ -76,16 +73,12 @@
)))))
(type: .public Command
- {#.doc (example "A command that can be executed by the operating system.")}
Text)
(type: .public Argument
- {#.doc (example "A parameter for a command.")}
Text)
(interface: .public (Shell !)
- {#.doc (example "The means for issuing commands to the operating system.")}
-
(: (-> [Environment Path Command (List Argument)] (! (Try (Process !))))
execute))
@@ -315,8 +308,6 @@
(as_is)))
(interface: .public (Mock s)
- {#.doc (example "A simulated process.")}
-
(: (-> s (Try [s Text]))
on_read)
(: (-> s (Try [s Text]))