diff options
author | Eduardo Julian | 2018-07-09 23:40:48 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-09 23:40:48 -0400 |
commit | 25c48836e80dcaed6c2cbb11a14d3353da37620e (patch) | |
tree | 6c01e942271126b560695aa51d0e1657fc291525 /stdlib/source | |
parent | 7c53a09d0ba1e443dd60dfdc4b8d8b134fcd120c (diff) |
- Fixes: Part 3.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/world/env.jvm.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/world/env.jvm.lux b/stdlib/source/lux/world/env.jvm.lux index 4db48fee6..e2511416e 100644 --- a/stdlib/source/lux/world/env.jvm.lux +++ b/stdlib/source/lux/world/env.jvm.lux @@ -23,7 +23,7 @@ (entrySet [] (Set (Map$Entry k v)))) (host.import: java/lang/System - (#static getenv [] (java/util/Map String String))) + (#static getenv [] (Map String String))) (def: (consume-iterator f iterator) (All [a b] (-> (-> a b) (Iterator a) (List b))) |