diff options
author | Eduardo Julian | 2017-10-16 18:39:20 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-16 18:39:20 -0400 |
commit | b2b8a0ffda0661511d8aec5634aad314b1e6c710 (patch) | |
tree | 2ed0e67d6f93db070d2ba6000b69408eb730ca4e /stdlib/source/lux/concurrency/actor.lux | |
parent | a2c29fe44720003df06f7f14d0bf02332298b87f (diff) |
- Re-named lux/control/parser;opt to lux/control/parser;maybe.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux index 7824446bd..b42a54a33 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -193,10 +193,10 @@ (s;Syntax BehaviorC) (let [handle-args ($_ p;seq s;local-symbol s;local-symbol s;local-symbol) stop-args ($_ p;seq s;local-symbol s;local-symbol)] - (p;seq (p;opt (s;form (p;seq (s;form (p;after (s;this (' handle)) handle-args)) - s;any))) - (p;opt (s;form (p;seq (s;form (p;after (s;this (' stop)) stop-args)) - s;any)))))) + (p;seq (p;maybe (s;form (p;seq (s;form (p;after (s;this (' handle)) handle-args)) + s;any))) + (p;maybe (s;form (p;seq (s;form (p;after (s;this (' stop)) stop-args)) + s;any)))))) (syntax: #export (actor: [export csr;export] [[_name _vars] actor-decl^] |