aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/actor.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/concurrency/actor.lux')
-rw-r--r--stdlib/source/library/lux/control/concurrency/actor.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/control/concurrency/actor.lux b/stdlib/source/library/lux/control/concurrency/actor.lux
index 7184a105e..f777f5aa5 100644
--- a/stdlib/source/library/lux/control/concurrency/actor.lux
+++ b/stdlib/source/library/lux/control/concurrency/actor.lux
@@ -53,13 +53,13 @@
(Resolver (<Obituary> Actor s))]
#mailbox (Atom (<Mailbox> Actor s))])
- (type: .public (Mail s)
+ (type .public (Mail s)
(<Mail> Actor s))
- (type: .public (Obituary s)
+ (type .public (Obituary s)
(<Obituary> Actor s))
- (type: .public (Behavior s)
+ (type .public (Behavior s)
(-> (Mail s) s (Actor s) (Async (Try s))))
(def .public (spawn! behavior init)
@@ -137,7 +137,7 @@
(again |mailbox|'))))))
(in (exception.except ..dead [])))))
- (type: .public (Message s o)
+ (type .public (Message s o)
(-> s (Actor s) (Async (Try [s o]))))
(def (mail message)
@@ -187,7 +187,7 @@
(async.resolved (exception.except ..poisoned [])))
actor))
-(type: .public Stop
+(type .public Stop
(IO Any))
(def continue! true)