diff options
| author | Christophe de Dinechin <christophe@taodyne.com> | 2016-11-10 10:32:19 +0100 |
|---|---|---|
| committer | titzer <titzer@google.com> | 2016-11-10 10:32:19 +0100 |
| commit | aa8a5ae8f80e6023f6be03f5adbd91656b9def24 (patch) | |
| tree | a0b90aa7a342b60014ede87515b495190b452525 /BinaryEncoding.md | |
| parent | e686a03efd88f124f99e166254780a59a82dd70d (diff) | |
| download | nanowasm-design-aa8a5ae8f80e6023f6be03f5adbd91656b9def24.tar.gz | |
Fix a typo and an error (#866)
* Fix typo on "semantics"
* Fix encoding for 'end', which should be 0x0b and not 0x0f.
Diffstat (limited to 'BinaryEncoding.md')
| -rw-r--r-- | BinaryEncoding.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BinaryEncoding.md b/BinaryEncoding.md index 2c03c85..d0081fe 100644 --- a/BinaryEncoding.md +++ b/BinaryEncoding.md @@ -464,7 +464,7 @@ Function bodies consist of a sequence of local variable declarations followed by | local_count | `varuint32` | number of local entries | | locals | `local_entry*` | local variables | | code | `byte*` | bytecode of the function | -| end | `byte` | `0x0f`, indicating the end of the body | +| end | `byte` | `0x0b`, indicating the end of the body | #### Local Entry |
