aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/command/auto.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/command/auto.lux')
-rw-r--r--stdlib/source/program/aedifex/command/auto.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/program/aedifex/command/auto.lux b/stdlib/source/program/aedifex/command/auto.lux
index 2e07625cb..81a1a855a 100644
--- a/stdlib/source/program/aedifex/command/auto.lux
+++ b/stdlib/source/program/aedifex/command/auto.lux
@@ -25,7 +25,7 @@
[dependency
[resolution (.only Resolution)]]]])
-(def: (targets fs path)
+(def (targets fs path)
(-> (file.System Async) file.Path (Async (List file.Path)))
(let [! async.monad]
(|> path
@@ -35,15 +35,15 @@
(at ! conjoint)
(at ! each (|>> list.together (list.partial path))))))
-(def: .public delay
+(def .public delay
Nat
1,000)
-(def: (pause delay)
+(def (pause delay)
(-> Nat (Async (Try Any)))
(async.after delay {try.#Success []}))
-(def: .public (do! delay watcher command)
+(def .public (do! delay watcher command)
(All (_ a)
(-> Nat (Watcher Async)
(-> (Console Async) (Program Async) (file.System Async) (Shell Async) Resolution (Command [Exit a]))