Skip to content

Commit dcafc5f

Browse files
authored
Rollup merge of #94960 - codehorseman:master, r=oli-obk
Fix many spelling mistakes Signed-off-by: codehorseman <[email protected]>
2 parents e526baf + 66df1dd commit dcafc5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/panic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub macro unreachable_2015 {
6868
$crate::panicking::panic("internal error: entered unreachable code")
6969
),
7070
// Use of `unreachable_display` for non_fmt_panic lint.
71-
// NOTE: the message ("internal error ...") is embeded directly in unreachable_display
71+
// NOTE: the message ("internal error ...") is embedded directly in unreachable_display
7272
($msg:expr $(,)?) => (
7373
$crate::panicking::unreachable_display(&$msg)
7474
),

std/src/sys/common/alloc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub const MIN_ALIGN: usize = 8;
2828
target_arch = "wasm64",
2929
)))]
3030
pub const MIN_ALIGN: usize = 16;
31-
// The allocator on the esp-idf platform guarentees 4 byte alignment.
31+
// The allocator on the esp-idf platform guarantees 4 byte alignment.
3232
#[cfg(all(any(
3333
all(target_arch = "riscv32", target_os = "espidf"),
3434
all(target_arch = "xtensa", target_os = "espidf"),

0 commit comments

Comments
 (0)