Merge pull request #3078 from CBenoit/wasmtime-store-doc-typo

wasmtime: fix typo in `Store` doc
This commit is contained in:
Peter Huene
2021-07-12 18:34:56 -07:00
committed by GitHub

View File

@@ -73,7 +73,7 @@ pub use self::data::*;
///
/// You can create a store with default configuration settings using
/// `Store::default()`. This will create a brand new [`Engine`] with default
/// ocnfiguration (see [`Config`](crate::Config) for more information).
/// configuration (see [`Config`](crate::Config) for more information).
pub struct Store<T> {
// for comments about `ManuallyDrop`, see `Store::into_data`
inner: ManuallyDrop<Box<StoreInner<T>>>,