diff --git a/lib/runtime-core/src/instance.rs b/lib/runtime-core/src/instance.rs index 743d1633a..b79850a8e 100644 --- a/lib/runtime-core/src/instance.rs +++ b/lib/runtime-core/src/instance.rs @@ -238,7 +238,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 @@ -254,7 +254,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)