Skip to content

Commit af40b57

Browse files
authored
docs: fix typos (#11393)
1 parent a0450a7 commit af40b57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/examples-deterministic-wasm-execution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ for more details.
3232

3333
The relaxed SIMD proposal gives Wasm programs access to SIMD operations that
3434
cannot be made to execute both identically and performantly across different
35-
architectures. The proposal gave up determinism across different achitectures in
35+
architectures. The proposal gave up determinism across different architectures in
3636
order to maintain portable performance.
3737

3838
At the cost of worse runtime performance, Wasmtime can deterministically execute

winch/codegen/src/isa/x64/asm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2022,7 +2022,7 @@ impl Assembler {
20222022
self.emit(Inst::External { inst });
20232023
}
20242024

2025-
/// Substract unsigned integers with unsigned saturation.
2025+
/// Subtract unsigned integers with unsigned saturation.
20262026
pub fn xmm_vpsubus_rrr(&mut self, dst: WritableReg, src1: Reg, src2: Reg, size: OperandSize) {
20272027
let dst: WritableXmm = dst.map(|r| r.into());
20282028
let inst = match size {

0 commit comments

Comments
 (0)