From eaf8d098eef082c5b28baacb70388f6767d8887b Mon Sep 17 00:00:00 2001 From: titzer Date: Tue, 9 Feb 2016 10:31:51 +0100 Subject: Update BinaryEncoding.md --- BinaryEncoding.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'BinaryEncoding.md') diff --git a/BinaryEncoding.md b/BinaryEncoding.md index a2726ff..d2ea66a 100644 --- a/BinaryEncoding.md +++ b/BinaryEncoding.md @@ -125,10 +125,10 @@ must contain a function body. Imported and exported functions must have a name. | flags | `uint8` | always | flags indicating attributes of a function
bit `0` : a name is present
bit `1` : the function is an import
bit `2` : the function has local variables
bit `3` : the function is an export | | signature | `uint16` | always | index into the Signature section | | name | `uint32` | `flags[0] == 1` | name of the function as an offset within the module | -| i32 count | `uint16` | `flags[2] == 1` | number of i32 local variables | -| i64 count | `uint16` | `flags[2] == 1` | number of i64 local variables | -| f32 count | `uint16` | `flags[2] == 1` | number of f32 local variables | -| f64 count | `uint16` | `flags[2] == 1` | number of f64 local variables | +| i32 count | `uint16` | `flags[2] == 1` | number of `i32` local variables | +| i64 count | `uint16` | `flags[2] == 1` | number of `i64` local variables | +| f32 count | `uint16` | `flags[2] == 1` | number of `f32` local variables | +| f64 count | `uint16` | `flags[2] == 1` | number of `f64` local variables | | body size | `uint16` | `flags[0] == 0` | size of function body to follow, in bytes | | body | `bytes` | `flags[0] == 0` | function body | -- cgit v1.2.3