From cfeaa95b54ec735b9cbf781f42c58772929d7174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20CORTIER?= Date: Mon, 12 Jul 2021 21:28:15 -0400 Subject: [PATCH] wasmtime: fix typo in `Store` doc --- crates/wasmtime/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasmtime/src/store.rs b/crates/wasmtime/src/store.rs index b764932909..6ed3d1d501 100644 --- a/crates/wasmtime/src/store.rs +++ b/crates/wasmtime/src/store.rs @@ -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 { // for comments about `ManuallyDrop`, see `Store::into_data` inner: ManuallyDrop>>,