diff options
author | Eduardo Julian | 2018-07-10 23:54:36 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-10 23:54:36 -0400 |
commit | 5efe74b9eba910d5389e20be07b504b1dad69504 (patch) | |
tree | de6240f98e5eb6a9a5c8a6dc827ea739c9cb11c9 /stdlib/source/lux/concurrency/actor.lux | |
parent | 852410fda71621522f7707a80554140a5aac7f9c (diff) |
- Improvements to import syntax [part 0].
Diffstat (limited to 'stdlib/source/lux/concurrency/actor.lux')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux index 187fe54eb..609e649d1 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -2,22 +2,22 @@ lux (lux (control monad ["p" parser] - ["ex" exception #+ exception:]) - [io #- run "io/" Monad<IO>] + ["ex" exception (#+ exception:)]) + [io (#- run) "io/" Monad<IO>] (data [product] ["e" error] text/format (collection [list "list/" Monoid<List> Monad<List> Fold<List>])) - [macro #+ with-gensyms Monad<Meta>] + [macro (#+ with-gensyms Monad<Meta>)] (macro [code] - ["s" syntax #+ syntax: Syntax] + ["s" syntax (#+ syntax: Syntax)] (syntax ["cs" common] (common ["csr" reader] ["csw" writer]))) (type abstract)) - (// [atom #+ Atom atom] - [promise #+ Promise promise "promise/" Monad<Promise>] - [task #+ Task])) + (// [atom (#+ Atom atom)] + [promise (#+ Promise promise) "promise/" Monad<Promise>] + [task (#+ Task)])) (exception: #export poisoned) |