Skip to content

Commit 1fccea1

Browse files
authored
Unrolled build for rust-lang#129885
Rollup merge of rust-lang#129885 - cuishuang:master, r=scottmcm chore: remove repetitive words
2 parents 6199b69 + 25c4aa8 commit 1fccea1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/mem/transmutability.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ where
149149
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
150150
pub struct Assume {
151151
/// When `false`, [`TransmuteFrom`] is not implemented for transmutations
152-
/// that might violate the the alignment requirements of references; e.g.:
152+
/// that might violate the alignment requirements of references; e.g.:
153153
///
154154
#[cfg_attr(bootstrap, doc = "```rust,ignore not runnable on bootstrap")]
155155
#[cfg_attr(not(bootstrap), doc = "```compile_fail,E0277")]

library/std/src/sync/reentrant_lock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ cfg_if!(
136136
// match do we read out the actual TID.
137137
// Note also that we can use relaxed atomic operations here, because
138138
// we only ever read from the tid if `tls_addr` matches the current
139-
// TLS address. In that case, either the the tid has been set by
139+
// TLS address. In that case, either the tid has been set by
140140
// the current thread, or by a thread that has terminated before
141141
// the current thread was created. In either case, no further
142142
// synchronization is needed (as per <https://github.com/rust-lang/miri/issues/3450>)

0 commit comments

Comments
 (0)