aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/actor.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-08-09 07:12:33 -0400
committerEduardo Julian2020-08-09 07:12:33 -0400
commitb2cec28f75239fd11ab13a6ff896fb0bf0f7a19c (patch)
treed8e53e9d95d47efeeb290a04e0a839b175367f7b /stdlib/source/lux/control/concurrency/actor.lux
parentbed794b36967e3096c73db0067bac5bb4ffdf814 (diff)
"abstract:" macro now takes annotations after representation type.
Diffstat (limited to 'stdlib/source/lux/control/concurrency/actor.lux')
-rw-r--r--stdlib/source/lux/control/concurrency/actor.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/control/concurrency/actor.lux b/stdlib/source/lux/control/concurrency/actor.lux
index a790fa89c..660b6a9a0 100644
--- a/stdlib/source/lux/control/concurrency/actor.lux
+++ b/stdlib/source/lux/control/concurrency/actor.lux
@@ -62,12 +62,12 @@
(wrap #.Nil))))
(abstract: #export (Actor s)
- {#.doc "An actor, defined as all the necessities it requires."}
-
{#obituary [(Promise <Obituary>)
(Resolver <Obituary>)]
#mailbox (Atom <Mailbox>)}
+ {#.doc "An actor, defined as all the necessities it requires."}
+
## TODO: Delete after new-luxc becomes the new standard compiler.
(def: (actor mailbox obituary)
(All [s]