aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/concurrency/actor.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/documentation/lux/control/concurrency/actor.lux')
-rw-r--r--stdlib/source/documentation/lux/control/concurrency/actor.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/documentation/lux/control/concurrency/actor.lux b/stdlib/source/documentation/lux/control/concurrency/actor.lux
index 1727f3c5f..a030eabaf 100644
--- a/stdlib/source/documentation/lux/control/concurrency/actor.lux
+++ b/stdlib/source/documentation/lux/control/concurrency/actor.lux
@@ -58,8 +58,8 @@
(message: .public (push [value a] state self)
(List a)
- (let [state' {#.Item value state}]
- (async.resolved {#try.Success [state' state']}))))
+ (let [state' {.#Item value state}]
+ (async.resolved {try.#Success [state' state']}))))
(actor: .public counter
Nat
@@ -67,11 +67,11 @@
(message: .public (count! [increment Nat] state self)
Any
(let [state' (n.+ increment state)]
- (async.resolved {#try.Success [state' state']})))
+ (async.resolved {try.#Success [state' state']})))
(message: .public (read! state self)
Nat
- (async.resolved {#try.Success [state state]}))))]
+ (async.resolved {try.#Success [state state]}))))]
(documentation: /.actor:
(format "Defines a named actor, with its behavior and internal state."
\n "Messages for the actor must be defined after the on_mail handler.")