diff options
author | Eduardo Julian | 2018-07-10 20:49:14 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-10 20:49:14 -0400 |
commit | b9b35fc136f4201bb9824f58dad7b2b45f2e5e80 (patch) | |
tree | 85ebb146f6c5f489961375d1d71b25d2ee25352a /stdlib/source | |
parent | 83f18eb967cfaa4f3403f58f3f80bc4945218cd8 (diff) |
- Re-named "lux/world/env" to "lux/world/environment".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/world/environment.jvm.lux (renamed from stdlib/source/lux/world/env.jvm.lux) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/world/env.jvm.lux b/stdlib/source/lux/world/environment.jvm.lux index 56d2c9bf8..7f1340043 100644 --- a/stdlib/source/lux/world/env.jvm.lux +++ b/stdlib/source/lux/world/environment.jvm.lux @@ -2,7 +2,7 @@ lux (lux (data [text] (format [context #+ Context]) - (collection ["dict" dictionary])) + (collection [dictionary])) [io #- run] [host])) @@ -43,4 +43,4 @@ (Map::entrySet []) (Set::iterator []) (consume-iterator entry-to-kv) - (dict.from-list text.Hash<Text>)))) + (dictionary.from-list text.Hash<Text>)))) |