Merge branch 'fix/emscripten-translate' of github.com:wasmerio/wasmer into fix/emscripten-translate

This commit is contained in:
Lachlan Sneff
2019-02-04 15:08:10 -08:00
6 changed files with 8 additions and 9 deletions

View File

@ -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)