aboutsummaryrefslogtreecommitdiff
path: root/BinaryEncoding.md
diff options
context:
space:
mode:
authorChristophe de Dinechin <christophe@taodyne.com>2016-11-10 10:32:19 +0100
committertitzer <titzer@google.com>2016-11-10 10:32:19 +0100
commitaa8a5ae8f80e6023f6be03f5adbd91656b9def24 (patch)
treea0b90aa7a342b60014ede87515b495190b452525 /BinaryEncoding.md
parente686a03efd88f124f99e166254780a59a82dd70d (diff)
downloadnanowasm-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.md2
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