From b8e4f27c5a2d08d759531974c746de5a5f04e9b6 Mon Sep 17 00:00:00 2001 From: Guanqun Lu Date: Thu, 2 Aug 2018 23:28:17 +0800 Subject: [PATCH] more typo fixes --- src/module.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module.rs b/src/module.rs index 47deb32..a61e866 100644 --- a/src/module.rs +++ b/src/module.rs @@ -565,7 +565,7 @@ impl ModuleInstance { /// /// - there are no export with a given name or this export is not a function, /// - given arguments doesn't match to function signature, - /// - trap occured at the execution time, + /// - trap occurred at the execution time, /// /// # Examples /// @@ -643,7 +643,7 @@ impl ModuleInstance { /// /// You can still access not fully initialized instance by calling [`not_started_instance`], /// but keep in mind, that this is sort of escape hatch: module really might depend on initialization -/// done in `start` function. It's definetely not recommended to call any exports on [`ModuleRef`] +/// done in `start` function. It's definitely not recommended to call any exports on [`ModuleRef`] /// returned by this function. /// /// If you sure, that there is no `start` function (e.g. because you created it without one), you can