summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-01-28 14:30:39 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-01-28 14:30:39 +0100
commit51d0c63f7e6d65204d6fe4ec3c378ef3fbedf119 (patch)
tree9700a1b1864005c5f852bf7e50a8f50912150146 /crates
parentf26a0caadab5da373c00ed1269c98d58fec3dec0 (diff)
docs: architecture
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/types/src/instructions.rs2
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)]