aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/compositor
diff options
context:
space:
mode:
authorEduardo Julian2021-08-27 20:59:34 -0400
committerEduardo Julian2021-08-27 20:59:34 -0400
commitc5b61d2f46ac19bf511197f3a537c4be0f47df33 (patch)
treecd62d188403e9b3998ba293dc5308719a430f1fe /stdlib/source/program/compositor
parente814f667aed509a70bd386dcd54628929134def4 (diff)
Updates to the Ruby compiler.
Diffstat (limited to '')
-rw-r--r--stdlib/source/program/compositor.lux6
-rw-r--r--stdlib/source/program/compositor/import.lux2
2 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/program/compositor.lux b/stdlib/source/program/compositor.lux
index 637ed76e1..bca81bd88 100644
--- a/stdlib/source/program/compositor.lux
+++ b/stdlib/source/program/compositor.lux
@@ -58,7 +58,7 @@
["#." import]])
(def: (or_crash! failure_description action)
- (All [a]
+ (All (_ a)
(-> Text (Async (Try a)) (Async a)))
(do async.monad
[?output action]
@@ -73,7 +73,7 @@
(in output))))
(def: (timed process)
- (All [a]
+ (All (_ a)
(-> (Async (Try a)) (Async (Try a))))
(do async.monad
[.let [start (io.run! instant.now)]
@@ -115,7 +115,7 @@
expander host_analysis platform generation_bundle host_directive_bundle program anchorT,expressionT,directiveT extender
service
packager,package)
- (All [<parameters>]
+ (All (_ <parameters>)
(-> Static
Expander
analysis.Bundle
diff --git a/stdlib/source/program/compositor/import.lux b/stdlib/source/program/compositor/import.lux
index d05867201..230b0325e 100644
--- a/stdlib/source/program/compositor/import.lux
+++ b/stdlib/source/program/compositor/import.lux
@@ -30,7 +30,7 @@
[cli (#+ Library)]])
(def: Action
- (type (All [a] (Async (Try a)))))
+ (type (All (_ a) (Async (Try a)))))
(exception: .public useless_tar_entry)