From ed505eb778168e08ca3d09a103110e33a0e4a4b7 Mon Sep 17 00:00:00 2001 From: wackbyte Date: Mon, 7 Mar 2022 21:25:19 -0500 Subject: [PATCH] Fix a typo in the IR docs --- src/ir/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ir/mod.rs b/src/ir/mod.rs index 83b1b0c8..0bbd0dd8 100644 --- a/src/ir/mod.rs +++ b/src/ir/mod.rs @@ -2,7 +2,7 @@ //! //! The goal is to match wasm instructions as closely as possible, but translate //! the stack machine into an instruction tree. Additionally all control frames -//! are representd as `Block`s. +//! are represented as `Block`s. mod traversals; pub use self::traversals::*;