File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
cranelift/assembler-x64/src Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl<R: AsReg> Amode<R> {
49
49
}
50
50
}
51
51
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
53
53
/// `Amode`.
54
54
pub ( crate ) fn encode_rex_suffixes (
55
55
& self ,
Original file line number Diff line number Diff line change @@ -969,15 +969,15 @@ pub enum Trampoline {
969
969
/// An intrinisic used by FACT-generated modules to (partially or entirely) transfer
970
970
/// ownership of a `future`.
971
971
///
972
- /// Transfering a `future` can either mean giving away the readable end
972
+ /// Transferring a `future` can either mean giving away the readable end
973
973
/// while retaining the writable end or only the former, depending on the
974
974
/// ownership status of the `future`.
975
975
FutureTransfer ,
976
976
977
977
/// An intrinisic used by FACT-generated modules to (partially or entirely) transfer
978
978
/// ownership of a `stream`.
979
979
///
980
- /// Transfering a `stream` can either mean giving away the readable end
980
+ /// Transferring a `stream` can either mean giving away the readable end
981
981
/// while retaining the writable end or only the former, depending on the
982
982
/// ownership status of the `stream`.
983
983
StreamTransfer ,
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ pub const ELF_WASMTIME_ADDRMAP: &str = ".wasmtime.addrmap";
65
65
/// maps).
66
66
///
67
67
/// 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
69
69
/// live GC references at this pc? Like the addrmap section this has an
70
70
/// alignment of 1 with unaligned reads, and it additionally doesn't support
71
71
/// >=4gb text sections.
Original file line number Diff line number Diff line change @@ -2003,7 +2003,7 @@ impl Memory {
2003
2003
}
2004
2004
}
2005
2005
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
2007
2007
/// relocated at runtime.
2008
2008
///
2009
2009
/// When this function returns `false` then it means that after the initial
You can’t perform that action at this time.
0 commit comments