From 84663dc3c2d3e04ecf89ba7c018010ff745c10ab Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 25 Jan 2024 15:04:17 +0900 Subject: [PATCH] Fix catch_all_ref opcode in the overview (#291) --- proposals/exception-handling/Exceptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/exception-handling/Exceptions.md b/proposals/exception-handling/Exceptions.md index 76661c3f..08c484a6 100644 --- a/proposals/exception-handling/Exceptions.md +++ b/proposals/exception-handling/Exceptions.md @@ -451,4 +451,4 @@ A `catch` handler is a pair of tag and label index: | `catch` | `0x00` | tag : `varuint32`, label : `varuint32` | | `catch_ref` | `0x01` | tag : `varuint32`, label : `varuint32` | | `catch_all` | `0x02` | label : `varuint32` | -| `catch_all_ref` | `0x02` | label : `varuint32` | +| `catch_all_ref` | `0x03` | label : `varuint32` |