Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/fuzzing/src/generators/module.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl<'a> Arbitrary<'a> for ModuleConfig {
fn arbitrary(u: &mut Unstructured<'a>) -> arbitrary::Result<ModuleConfig> {
let mut config = wasm_smith::Config::arbitrary(u)?;

// This list is intended to be the definintive source of truth for
// This list is intended to be the definitive source of truth for
// what's at least possible to fuzz within Wasmtime. This is a
// combination of features in `wasm-smith` where some proposals are
// on-by-default (as determined by fuzz input) and others are
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmtime/src/runtime/component/values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ impl Val {
}

/// Deserialize a [`Val`] from its [`crate::component::wasm_wave`] encoding. Deserialization
/// requrires a target [`crate::component::Type`].
/// requires a target [`crate::component::Type`].
#[cfg(feature = "wave")]
pub fn from_wave(ty: &crate::component::Type, s: &str) -> Result<Self> {
Ok(wasm_wave::from_str(ty, s)?)
Expand Down
2 changes: 1 addition & 1 deletion crates/wasmtime/src/runtime/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2653,7 +2653,7 @@ impl MemoryTypeBuilder {
/// * Memories use 32-bit indexes.
/// * The page size is 64KiB.
///
/// Each option can be configued through the methods on the returned
/// Each option can be configured through the methods on the returned
/// builder.
pub fn new() -> MemoryTypeBuilder {
MemoryTypeBuilder::default()
Expand Down