diff options
author | Paco <pakoito@users.noreply.github.com> | 2020-12-05 15:43:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-05 15:43:46 +0100 |
commit | 300b39b889313aec387a2a8746add652bdee407c (patch) | |
tree | da76ae766b872d6253c26ecbaab83db577766311 /core/runtime.rs | |
parent | 71ef5a9cd33390f7f41b80cdb57862b7f7507f76 (diff) |
docs(core): Fix typo in load_module's docstring (#8564)
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index 5044072b6..c03ee9d6f 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -1269,7 +1269,7 @@ impl JsRuntime { Ok(()) } - /// Asynchronously load specified module and all of it's dependencies + /// Asynchronously load specified module and all of its dependencies /// /// User must call `JsRuntime::mod_evaluate` with returned `ModuleId` /// manually after load is finished. |