Remove reference to store in Linker::instantiate_pre (#6057)

The `store` param was removed in #5683
This commit is contained in:
Lann
2023-03-17 16:27:04 -04:00
committed by GitHub
parent 208d09e9f0
commit cd1b19a289

View File

@@ -1125,13 +1125,6 @@ impl<T> Linker<T> {
/// Returns an error which may be downcast to an [`UnknownImportError`] if /// Returns an error which may be downcast to an [`UnknownImportError`] if
/// the module has any unresolvable imports. /// the module has any unresolvable imports.
/// ///
/// # Panics
///
/// This method will panic if any item defined in this linker used by
/// `module` is not owned by `store`. Additionally this will panic if the
/// [`Engine`] that the `store` belongs to is different than this
/// [`Linker`].
///
/// # Examples /// # Examples
/// ///
/// ``` /// ```