From 6f0f19637599164d177b68365122235ee0bf16fd Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Fri, 16 Sep 2016 17:07:34 -0700 Subject: [PATCH] Move description of `return` to correct column --- BinaryEncoding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryEncoding.md b/BinaryEncoding.md index 2a12e2f2..335425b0 100644 --- a/BinaryEncoding.md +++ b/BinaryEncoding.md @@ -433,7 +433,7 @@ It is legal to have several entries with the same type. | `br` | `0x06` | relative_depth : `varuint32` | break that targets an outer nested block | | `br_if` | `0x07` | relative_depth : `varuint32` | conditional break that targets an outer nested block | | `br_table` | `0x08` | see below | branch table control flow construct | -| `return` | `0x09` | return zero or one value from this function | +| `return` | `0x09` | | return zero or one value from this function | | `drop` | `0x0b` | | ignore value | | `nop` | `0x0a` | | no operation | | `end` | `0x0f` | | end a block, loop, or if |