From 42780042ef13db7bec936b8a00bde1ce33d0c33e Mon Sep 17 00:00:00 2001 From: nlewycky Date: Mon, 15 Jul 2019 10:55:26 -0700 Subject: [PATCH] Fix typo in comment. --- lib/runtime-core/src/vm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runtime-core/src/vm.rs b/lib/runtime-core/src/vm.rs index ffc517910..1e0b3773d 100644 --- a/lib/runtime-core/src/vm.rs +++ b/lib/runtime-core/src/vm.rs @@ -74,7 +74,7 @@ pub struct InternalCtx { /// A pointer to an array of locally-defined globals, indexed by `GlobalIndex`. pub globals: *mut *mut LocalGlobal, - /// A pointer to an array of imported memories, indexed by `MemoryIndex, + /// A pointer to an array of imported memories, indexed by `MemoryIndex`, pub imported_memories: *mut *mut LocalMemory, /// A pointer to an array of imported tables, indexed by `TableIndex`.