diff --git a/linera-witty/src/type_traits/mod.rs b/linera-witty/src/type_traits/mod.rs index 6009b003b74..08b6cf81b55 100644 --- a/linera-witty/src/type_traits/mod.rs +++ b/linera-witty/src/type_traits/mod.rs @@ -68,7 +68,7 @@ pub trait WitStore: WitType { /// Lowers the type into its flat layout representation. /// - /// May write to the `memory` if the type has references to heap data or if it doesn't fix in + /// May write to the `memory` if the type has references to heap data or if it doesn't fit in /// the maximum flat layout size. fn lower( &self, diff --git a/linera-witty/tests/common/test_instance.rs b/linera-witty/tests/common/test_instance.rs index 52b128dee8e..d91080ec532 100644 --- a/linera-witty/tests/common/test_instance.rs +++ b/linera-witty/tests/common/test_instance.rs @@ -36,7 +36,7 @@ pub trait TestInstanceFactory { /// The type received by host functions to use for reentrant calls. type Caller<'caller>; - /// Loads a test module with the provided `module_name` from the named `group`_ + /// Loads a test module with the provided `module_name` from the named `group` fn load_test_module( &mut self, group: &str, diff --git a/linera-witty/tests/common/wit_interface_test.rs b/linera-witty/tests/common/wit_interface_test.rs index 9a34b0aa77c..98e1e66d974 100644 --- a/linera-witty/tests/common/wit_interface_test.rs +++ b/linera-witty/tests/common/wit_interface_test.rs @@ -9,7 +9,7 @@ use linera_witty::{ wit_generation::WitInterface, }; -/// Expected snippets for the `entryoint` interface. +/// Expected snippets for the `entrypoint` interface. // The `wit_import` integration test does not use an `Entrypoint` interface #[allow(dead_code)] pub const ENTRYPOINT: (&str, &[&str], &[(&str, &str)]) =