diff options
author | Eduardo Julian | 2017-10-11 17:10:16 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-11 17:10:16 -0400 |
commit | 6608f998bca38022af2ebe4f7557f20b20f58acf (patch) | |
tree | b1c7a7bf6492a973756d23f2845802198087e5d9 /stdlib/source/lux/concurrency/actor.lux | |
parent | ede56371f52b63b92cf0dc35a22ae243053268c3 (diff) |
- Eliminated the Anns and Ann-Value types, and now only using Code for definition annotations.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux index ac4db6606..7824446bd 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -154,7 +154,7 @@ (do Monad<Lux> [name (macro;normalize name) [_ annotations _] (macro;find-def name)] - (case (macro;get-ident-ann (ident-for <tag>) annotations) + (case (macro;get-tag-ann (ident-for <tag>) annotations) (#;Some actor-name) (wrap actor-name) |