Skip to content

Commit c8894cc

Browse files
committed
replace unsized uN by a u64
Signed-off-by: Roman Volosatovs <[email protected]>
1 parent c557391 commit c8894cc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

design/mvp/Binary.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ Notes:
358358
(See [Value Definitions](Explainer.md#value-definitions) in the explainer.)
359359

360360
```ebnf
361-
value ::= t:<valtype> len:<uN> v:<val(t)> => (value t v) (where len = ||v|| and N = ceil(sqrt(||v||)))
361+
value ::= t:<valtype> len:<u64> v:<val(t)> => (value t v) (where len = ||v||)
362362
val(bool) ::= 0x00 => false
363363
| 0x01 => true
364364
val(u8) ::= v:<core:byte> => v
@@ -404,7 +404,6 @@ Notes:
404404
- [`core:u16`]
405405
- [`core:u32`]
406406
- [`core:u64`]
407-
- [`core:uN`]
408407
- [`core:f32`]
409408
- [`core:f64`]
410409
- [`core:utf8`]
@@ -448,7 +447,6 @@ named once.
448447
[`core:u32`]: https://webassembly.github.io/spec/core/binary/values.html#integers
449448
[`core:s64`]: https://webassembly.github.io/spec/core/binary/values.html#integers
450449
[`core:u64`]: https://webassembly.github.io/spec/core/binary/values.html#integers
451-
[`core:uN`]: https://webassembly.github.io/spec/core/binary/values.html#integers
452450
[`core:f32`]: https://webassembly.github.io/spec/core/binary/values.html#floating-point
453451
[`core:f64`]: https://webassembly.github.io/spec/core/binary/values.html#floating-point
454452
[`core:utf8`]: https://webassembly.github.io/spec/core/binary/values.html#binary-utf8

0 commit comments

Comments
 (0)