From 652d8e03d4f6a5bce82c95625ed8824027aadd81 Mon Sep 17 00:00:00 2001 From: Tristan Cacqueray Date: Thu, 7 Mar 2024 13:01:22 -0500 Subject: [PATCH] types: fix typo in the module's doc --- crates/types/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/types/src/lib.rs b/crates/types/src/lib.rs index d2da7d7..0e78bb0 100644 --- a/crates/types/src/lib.rs +++ b/crates/types/src/lib.rs @@ -56,7 +56,7 @@ pub struct TinyWasmModule { /// The exports of the WebAssembly module. pub exports: Box<[Export]>, - /// The tables of the WebAssembly module. + /// The globals of the WebAssembly module. pub globals: Box<[Global]>, /// The tables of the WebAssembly module.