Skip to content

Commit f3e5c87

Browse files
chore: remove duplicate word in comment (#10614)
Signed-off-by: wangcundashang <wangcundashang@qq.com>
1 parent e675984 commit f3e5c87

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

cranelift/codegen/src/isa/s390x/inst/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ impl MemArg {
8989
}
9090
}
9191

92-
/// Memory reference using the sum of a register an an offset as address.
92+
/// Memory reference using the sum of a register an offset as address.
9393
pub fn reg_plus_off(reg: Reg, off: i64, flags: MemFlags) -> MemArg {
9494
MemArg::RegOffset { reg, off, flags }
9595
}

crates/wasmtime/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ impl Config {
379379
/// arbitrarily long in the worst case, likely blocking all other
380380
/// asynchronous tasks.
381381
///
382-
/// To remedy this situation you have a a few possible ways to solve this:
382+
/// To remedy this situation you have a few possible ways to solve this:
383383
///
384384
/// * The most efficient solution is to enable
385385
/// [`Config::epoch_interruption`] in conjunction with

crates/wasmtime/src/runtime/vm/vmcontext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ pub struct VMStoreContext {
10341034
/// This member is `0` when Wasm is actively running and has not called out
10351035
/// to the host.
10361036
///
1037-
/// Used to find the start of a a contiguous sequence of Wasm frames when
1037+
/// Used to find the start of a contiguous sequence of Wasm frames when
10381038
/// walking the stack.
10391039
pub last_wasm_exit_fp: UnsafeCell<usize>,
10401040

0 commit comments

Comments
 (0)