diff options
author | Eduardo Julian | 2018-07-20 23:43:59 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-20 23:43:59 -0400 |
commit | b0914546f8e8ea5ef970c1f92dbb0072aa22be63 (patch) | |
tree | f8ca4bf6bc4b3e8703ff1cb752a4e18b8973d3d5 /stdlib/source/lux/concurrency/actor.lux | |
parent | 518a7467c4e0ef904afa8c59cff3594d6f63c552 (diff) |
"^open" and "open:" now use aliases instead of prefixes, the same way as module aliases.
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 971bbe01e..52bf7621d 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -3,14 +3,14 @@ [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>)]]] + ["." list ("list/." Monoid<List> Monad<List> Fold<List>)]]] ["." macro (#+ with-gensyms Monad<Meta>) ["." code] ["s" syntax (#+ syntax: Syntax)] @@ -23,7 +23,7 @@ abstract]] [// ["." atom (#+ Atom atom)] - ["." promise (#+ Promise promise) ("promise/" Monad<Promise>)] + ["." promise (#+ Promise promise) ("promise/." Monad<Promise>)] ["." task (#+ Task)]]) (exception: #export poisoned) |