aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/concurrency/actor.lux
diff options
context:
space:
mode:
authorEduardo Julian2018-07-11 07:36:33 -0400
committerEduardo Julian2018-07-11 07:36:33 -0400
commite7fc42bbc7d0b56384864a6fcd1b1e0bf8cd880b (patch)
tree7308aa31dcbc71a63024bae62e2d314d2cfac63a /stdlib/source/lux/concurrency/actor.lux
parent5efe74b9eba910d5389e20be07b504b1dad69504 (diff)
- Improvements to import syntax [part 1].
Diffstat (limited to 'stdlib/source/lux/concurrency/actor.lux')
-rw-r--r--stdlib/source/lux/concurrency/actor.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux
index 609e649d1..792b65dfc 100644
--- a/stdlib/source/lux/concurrency/actor.lux
+++ b/stdlib/source/lux/concurrency/actor.lux
@@ -3,11 +3,11 @@
(lux (control monad
["p" parser]
["ex" exception (#+ exception:)])
- [io (#- run) "io/" Monad<IO>]
+ [io (#- run) ("io/" Monad<IO>)]
(data [product]
["e" error]
text/format
- (collection [list "list/" Monoid<List> Monad<List> Fold<List>]))
+ (collection [list ("list/" Monoid<List> Monad<List> Fold<List>)]))
[macro (#+ with-gensyms Monad<Meta>)]
(macro [code]
["s" syntax (#+ syntax: Syntax)]
@@ -16,7 +16,7 @@
["csw" writer])))
(type abstract))
(// [atom (#+ Atom atom)]
- [promise (#+ Promise promise) "promise/" Monad<Promise>]
+ [promise (#+ Promise promise) ("promise/" Monad<Promise>)]
[task (#+ Task)]))
(exception: #export poisoned)