Skip to content

Commit 119e33a

Browse files
committed
docs: fix
1 parent deb9159 commit 119e33a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/v7.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class UuidV7 {
2929
// Extract the 48-bit timestamp from the first 6 bytes.
3030
var timestampMillis = Int64(0);
3131
for (var i = 0; i < 6; i++) {
32-
// Using BigInt due to how JS binary shift works,
32+
// Using Int64 due to how JS binary shift works,
3333
// it truncates the number to be uint32 which is not enough in this case.
3434
timestampMillis = (timestampMillis << 8) | bytes[i];
3535
}

0 commit comments

Comments
 (0)