diff options
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/types/src/instructions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/types/src/instructions.rs b/crates/types/src/instructions.rs index 9098812..1061d10 100644 --- a/crates/types/src/instructions.rs +++ b/crates/types/src/instructions.rs @@ -43,7 +43,7 @@ pub enum ConstInstruction { /// * `br_table` stores the jump lables in the following `br_label` instructions to keep this enum small. /// * Lables/Blocks: we store the label end offset in the instruction itself and /// have seperate EndBlockFrame and EndFunc instructions to mark the end of a block or function. -/// This makes it easier to implement the label stack (we call it BlockFrameStack) iteratively. +/// This makes it easier to implement the label stack iteratively. /// /// See <https://webassembly.github.io/spec/core/binary/instructions.html> #[derive(Debug, Clone, Copy)] |
