Skip to content

Commit 16a836e

Browse files
authored
1 parent 61ba09f commit 16a836e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cranelift/assembler-x64/src/mem.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl<R: AsReg> Amode<R> {
4949
}
5050
}
5151

52-
/// Emit the ModR/M, SIB, and displacement suffixes as neeeded for this
52+
/// Emit the ModR/M, SIB, and displacement suffixes as needed for this
5353
/// `Amode`.
5454
pub(crate) fn encode_rex_suffixes(
5555
&self,

crates/environ/src/component/info.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -969,15 +969,15 @@ pub enum Trampoline {
969969
/// An intrinisic used by FACT-generated modules to (partially or entirely) transfer
970970
/// ownership of a `future`.
971971
///
972-
/// Transfering a `future` can either mean giving away the readable end
972+
/// Transferring a `future` can either mean giving away the readable end
973973
/// while retaining the writable end or only the former, depending on the
974974
/// ownership status of the `future`.
975975
FutureTransfer,
976976

977977
/// An intrinisic used by FACT-generated modules to (partially or entirely) transfer
978978
/// ownership of a `stream`.
979979
///
980-
/// Transfering a `stream` can either mean giving away the readable end
980+
/// Transferring a `stream` can either mean giving away the readable end
981981
/// while retaining the writable end or only the former, depending on the
982982
/// ownership status of the `stream`.
983983
StreamTransfer,

crates/environ/src/obj.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub const ELF_WASMTIME_ADDRMAP: &str = ".wasmtime.addrmap";
6565
/// maps).
6666
///
6767
/// This section has a custom binary encoding described in `stack_maps.rs` which
68-
/// is used to implement the single query we want to satisy of: where are the
68+
/// is used to implement the single query we want to satisfy of: where are the
6969
/// live GC references at this pc? Like the addrmap section this has an
7070
/// alignment of 1 with unaligned reads, and it additionally doesn't support
7171
/// >=4gb text sections.

crates/environ/src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2003,7 +2003,7 @@ impl Memory {
20032003
}
20042004
}
20052005

2006-
/// Returs whether or not the base pointer of this memory is allowed to be
2006+
/// Returns whether or not the base pointer of this memory is allowed to be
20072007
/// relocated at runtime.
20082008
///
20092009
/// When this function returns `false` then it means that after the initial

0 commit comments

Comments
 (0)