Skip to content

Commit f7b29a6

Browse files
authored
Update table max length (#487)
The code says `2**28` but the prose says `2**30`. I believe the former is the correct value?
1 parent 110eb6e commit f7b29a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

design/mvp/CanonicalABI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ that are used in preference to growing the table. The free list is represented
269269
as a Python list here, but an optimizing implementation could instead store the
270270
free list in the free elements of `array`.
271271

272-
The limit of `2**30` ensures that the high 2 bits of table indices are unset
272+
The limit of `2**28` ensures that the high 2 bits of table indices are unset
273273
and available for other use in guest code (e.g., for tagging, packed words or
274274
sentinel values).
275275

0 commit comments

Comments
 (0)