From 0754079bab340413a360da6512dcbf63b97396fe Mon Sep 17 00:00:00 2001 From: addshore Date: Mon, 13 Jan 2025 14:17:15 +0000 Subject: [PATCH] Fix comment in byte-order.int64. unsigned -> signed (#2691) --- lib/io/byte-order.toit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/io/byte-order.toit b/lib/io/byte-order.toit index 726d81411..b4c393174 100644 --- a/lib/io/byte-order.toit +++ b/lib/io/byte-order.toit @@ -266,7 +266,7 @@ abstract class ByteOrder: put-uint buffer 4 offset u32 /** - Reads a 64-bit unsigned integer from the $buffer at the $offset. + Reads a 64-bit signed integer from the $buffer at the $offset. The $offset must satisfy: 0 <= $offset <= buffer.size - 8, allowing to read 8 bytes at index $offset.