diff options
author | Eduardo Julian | 2018-07-10 23:54:36 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-10 23:54:36 -0400 |
commit | 5efe74b9eba910d5389e20be07b504b1dad69504 (patch) | |
tree | de6240f98e5eb6a9a5c8a6dc827ea739c9cb11c9 /stdlib/source/lux/data/text/encoding.lux | |
parent | 852410fda71621522f7707a80554140a5aac7f9c (diff) |
- Improvements to import syntax [part 0].
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/data/text/encoding.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/data/text/encoding.lux b/stdlib/source/lux/data/text/encoding.lux index b4e6fe113..7442faa68 100644 --- a/stdlib/source/lux/data/text/encoding.lux +++ b/stdlib/source/lux/data/text/encoding.lux @@ -1,9 +1,9 @@ (.module: lux - (lux (data [error #+ Error]) - (world [blob #+ Blob]) + (lux (data [error (#+ Error)]) + (world [blob (#+ Blob)]) (language ["_" host]) - [host #+ import:])) + [host (#+ import:)])) (`` (for {(~~ (static _.jvm)) (as-is (def: utf8 Text "UTF-8") |