From 072d5dc9782b9d40c2dce04689e880f30049df2e Mon Sep 17 00:00:00 2001 From: Shamil <66209982+shamilsan@users.noreply.github.com> Date: Thu, 29 Jul 2021 16:59:41 +0300 Subject: [PATCH] Fix typo in doc (#3127) --- 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 6ed3d1d501..919e6d32f8 100644 --- a/crates/wasmtime/src/store.rs +++ b/crates/wasmtime/src/store.rs @@ -36,7 +36,7 @@ pub use self::data::*; /// [`Store`] it will not be deallocated until the [`Store`] itself is dropped. /// This makes [`Store`] unsuitable for creating an unbounded number of /// instances in it because [`Store`] will never release this memory. It's -/// recommended to have a [`Store`] correspond roughly to the liftime of a "main +/// recommended to have a [`Store`] correspond roughly to the lifetime of a "main /// instance" that an embedding is interested in executing. /// /// ## Type parameter `T`