Skip to content
Closed
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/wasm-mutate/src/mutators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use wasmparser::Operator;
/// A mutation that can be applied to a Wasm module to produce a new, mutated
/// Wasm module.
pub trait Mutator {
/// Can this `Mutator` *probably* be applied to the the given Wasm and
/// Can this `Mutator` *probably* be applied to the given Wasm and
/// configuration?
///
/// When checking Wasm applicability, these checks should be implemented as
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-smith/src/core/code_builder/no_traps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ fn min_input_const_for_trunc<'a>(inst: &Instruction) -> Instruction<'a> {
let min_f64 = -9_223_372_036_854_775_000f64;
let min_f32 = -9_223_372_000_000_000_000f32;

// This is the minimum float value that is representable as as i32
// This is the minimum float value that is representable as i32
let min_f32_as_i32 = -2_147_483_500f32;
match inst {
Instruction::I32TruncF32S => Instruction::F32Const(min_f32_as_i32.into()),
Expand Down
Loading