From e688b374a665aa0d3350a6757e7ce4ae0a27855c Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Mon, 4 Feb 2019 10:24:44 -0800 Subject: [PATCH] fix some typos (#136) --- lib/runtime-core/src/instance.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/runtime-core/src/instance.rs b/lib/runtime-core/src/instance.rs index 49fad4752..2a2ce9cb5 100644 --- a/lib/runtime-core/src/instance.rs +++ b/lib/runtime-core/src/instance.rs @@ -168,7 +168,7 @@ impl Instance { self.call_with_index(func_index, args) } - /// Returns a immutable reference to the + /// Returns an immutable reference to the /// [`Ctx`] used by this Instance. /// /// [`Ctx`]: struct.Ctx.html @@ -184,7 +184,7 @@ impl Instance { unsafe { &mut *self.inner.vmctx } } - /// Returns a iterator over all of the items + /// Returns an iterator over all of the items /// exported from this instance. pub fn exports(&mut self) -> ExportIter { ExportIter::new(&self.module, &mut self.inner)