diff options
Diffstat (limited to 'stdlib/source/lux/host/jvm/encoding.lux')
-rw-r--r-- | stdlib/source/lux/host/jvm/encoding.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/host/jvm/encoding.lux b/stdlib/source/lux/host/jvm/encoding.lux index 08213e268..7d7fb636d 100644 --- a/stdlib/source/lux/host/jvm/encoding.lux +++ b/stdlib/source/lux/host/jvm/encoding.lux @@ -11,7 +11,7 @@ [type abstract]]) -(do-template [<bytes> <name> <size> <to> <from> <equivalence>] +(template [<bytes> <name> <size> <to> <from> <equivalence>] [(abstract: #export <name> {} @@ -40,7 +40,7 @@ [4 U4 u4-bytes to-u4 from-u4 u4-equivalence] ) -(do-template [<name> <type> <format> <pre-write> <post-read>] +(template [<name> <type> <format> <pre-write> <post-read>] [(def: #export <name> (Format <type>) (binary.adapt <post-read> <pre-write> <format>))] |