aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/world/blob.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/world/blob.jvm.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/world/blob.jvm.lux b/stdlib/source/lux/world/blob.jvm.lux
index 249cee9eb..4d35a5658 100644
--- a/stdlib/source/lux/world/blob.jvm.lux
+++ b/stdlib/source/lux/world/blob.jvm.lux
@@ -12,11 +12,11 @@
(exception: #export Index-Out-Of-Bounds)
(exception: #export Inverted-Range)
-(type: #export Blob host;Byte-Array)
+(type: #export Blob (host;type (Array byte)))
(host;import java.util.Arrays
- (#static copyOfRange [Byte-Array int int] Byte-Array)
- (#static equals [Byte-Array Byte-Array] boolean))
+ (#static copyOfRange [(Array byte) int int] (Array byte))
+ (#static equals [(Array byte) (Array byte)] boolean))
(def: byte-mask
Nat