diff options
author | Eduardo Julian | 2018-07-11 07:36:33 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-11 07:36:33 -0400 |
commit | e7fc42bbc7d0b56384864a6fcd1b1e0bf8cd880b (patch) | |
tree | 7308aa31dcbc71a63024bae62e2d314d2cfac63a /stdlib/source/lux/concurrency/actor.lux | |
parent | 5efe74b9eba910d5389e20be07b504b1dad69504 (diff) |
- Improvements to import syntax [part 1].
Diffstat (limited to 'stdlib/source/lux/concurrency/actor.lux')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 6 |
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) |