diff options
author | Eduardo Julian | 2018-07-21 23:05:01 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-21 23:05:01 -0400 |
commit | 22d10692d87ac1c07fc14f6100917b913bb0f8b3 (patch) | |
tree | 61864188bf4521ab26825f85128b989d2ea202bf /stdlib/source/lux/concurrency/actor.lux | |
parent | 2746f1a2d7606e3295e12e9c2e6833663658ffa8 (diff) |
Re-named "name-for" to "name-of".
Diffstat (limited to 'stdlib/source/lux/concurrency/actor.lux')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux index fb0e9171a..05229b49e 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -151,14 +151,14 @@ (do-template [<with> <resolve> <tag> <desc>] [(def: #export (<with> name) (-> Name cs.Annotations cs.Annotations) - (|>> (#.Cons [(name-for <tag>) + (|>> (#.Cons [(name-of <tag>) (code.tag name)]))) (def: #export (<resolve> name) (-> Name (Meta Name)) (do Monad<Meta> [[_ annotations _] (macro.find-def name)] - (case (macro.get-tag-ann (name-for <tag>) annotations) + (case (macro.get-tag-ann (name-of <tag>) annotations) (#.Some actor-name) (wrap actor-name) |