Skip to content

Commit c5c820e

Browse files
committedMay 18, 2024·
Fix typos (taking into account review comments)
1 parent 685a80f commit c5c820e

File tree

29 files changed

+36
-36
lines changed

29 files changed

+36
-36
lines changed
 

‎compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
652652
}
653653

654654
// FIXME: We make sure that this is a normal top-level binding,
655-
// but we could suggest `todo!()` for all uninitialized bindings in the pattern pattern
655+
// but we could suggest `todo!()` for all uninitialized bindings in the pattern
656656
if let hir::StmtKind::Let(hir::LetStmt { span, ty, init: None, pat, .. }) =
657657
&ex.kind
658658
&& let hir::PatKind::Binding(..) = pat.kind

‎compiler/rustc_hir_typeck/src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3112,7 +3112,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
31123112

31133113
let true_errors = ocx.select_where_possible();
31143114

3115-
// Do a leak check -- we can't really report report a useful error here,
3115+
// Do a leak check -- we can't really report a useful error here,
31163116
// but it at least avoids an ICE when the error has to do with higher-ranked
31173117
// lifetimes.
31183118
self.leak_check(outer_universe, Some(snapshot))?;

‎compiler/rustc_lint/src/non_local_def.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ declare_lint! {
3838
///
3939
/// Creating non-local definitions go against expectation and can create discrepancies
4040
/// in tooling. It should be avoided. It may become deny-by-default in edition 2024
41-
/// and higher, see see the tracking issue <https://github.com/rust-lang/rust/issues/120363>.
41+
/// and higher, see the tracking issue <https://github.com/rust-lang/rust/issues/120363>.
4242
///
4343
/// An `impl` definition is non-local if it is nested inside an item and neither
4444
/// the type nor the trait are at the same nesting level as the `impl` block.

‎compiler/rustc_sanitizers/src/cfi/typeid/itanium_cxx_abi/transform.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ fn trait_object_ty<'tcx>(tcx: TyCtxt<'tcx>, poly_trait_ref: ty::PolyTraitRef<'tc
269269
/// if a function is member of the group derived from this type id. Therefore, in the first call to
270270
/// typeid_for_fnabi (when type ids are attached to functions and methods), it can only include at
271271
/// most as much information that would be available in the second call (i.e., during code
272-
/// generation at call sites); otherwise, the type ids would not not match.
272+
/// generation at call sites); otherwise, the type ids would not match.
273273
///
274274
/// For this, it:
275275
///

‎library/portable-simd/crates/core_simd/src/ops.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ macro_rules! for_base_types {
122122
#[inline]
123123
#[must_use = "operator returns a new vector without mutating the inputs"]
124124
// TODO: only useful for int Div::div, but we hope that this
125-
// will essentially always always get inlined anyway.
125+
// will essentially always get inlined anyway.
126126
#[track_caller]
127127
fn $call(self, rhs: Self) -> Self::Output {
128128
$macro_impl!(self, rhs, $inner, $scalar)

‎src/tools/clippy/clippy_lints/src/methods/needless_collect.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ pub(super) fn check<'tcx>(
127127
}
128128
}
129129

130-
/// checks for for collecting into a (generic) method or function argument
130+
/// checks for collecting into a (generic) method or function argument
131131
/// taking an `IntoIterator`
132132
fn check_collect_into_intoiterator<'tcx>(
133133
cx: &LateContext<'tcx>,

‎src/tools/clippy/tests/ui/ptr_arg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ mod issue_9218 {
282282
todo!()
283283
}
284284

285-
// These two's return types don't use use 'a so it's not okay
285+
// These two's return types don't use 'a so it's not okay
286286
fn cow_bad_ret_ty_1<'a>(input: &'a Cow<'a, str>) -> &'static str {
287287
//~^ ERROR: using a reference to `Cow` is not recommended
288288
todo!()

‎src/tools/compiletest/src/common.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ pub struct Config {
250250
/// Only run tests that match these filters
251251
pub filters: Vec<String>,
252252

253-
/// Skip tests tests matching these substrings. Corresponds to
253+
/// Skip tests matching these substrings. Corresponds to
254254
/// `test::TestOpts::skip`. `filter_exact` does not apply to these flags.
255255
pub skip: Vec<String>,
256256

@@ -381,7 +381,7 @@ pub struct Config {
381381
/// Whether to rerun tests even if the inputs are unchanged.
382382
pub force_rerun: bool,
383383

384-
/// Only rerun the tests that result has been modified accoring to Git status
384+
/// Only rerun the tests that result has been modified according to Git status
385385
pub only_modified: bool,
386386

387387
pub target_cfgs: OnceLock<TargetCfgs>,

‎src/tools/compiletest/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ fn is_android_gdb_target(target: &str) -> bool {
950950
)
951951
}
952952

953-
/// Returns `true` if the given target is a MSVC target for the purpouses of CDB testing.
953+
/// Returns `true` if the given target is a MSVC target for the purposes of CDB testing.
954954
fn is_pc_windows_msvc_target(target: &str) -> bool {
955955
target.ends_with("-pc-windows-msvc")
956956
}

‎src/tools/jsondoclint/src/validator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const LOCAL_CRATE_ID: u32 = 0;
2121
/// it is well formed. This involves calling `check_*` functions on
2222
/// fields of that item, and `add_*` functions on [`Id`]s.
2323
/// - `add_*`: These add an [`Id`] to the worklist, after validating it to check if
24-
/// the `Id` is a kind expected in this suituation.
24+
/// the `Id` is a kind expected in this situation.
2525
#[derive(Debug)]
2626
pub struct Validator<'a> {
2727
pub(crate) errs: Vec<Error>,

‎src/tools/lld-wrapper/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Script to invoke the bundled rust-lld with the correct flavor.
22
//!
3-
//! lld supports multiple command line interfaces. If `-flavor <flavor>` are passed as the first
3+
//! `lld` supports multiple command line interfaces. If `-flavor <flavor>` are passed as the first
44
//! two arguments the `<flavor>` command line interface is used to process the remaining arguments.
55
//! If no `-flavor` argument is present the flavor is determined by the executable name.
66
//!

‎src/tools/miri/cargo-miri/src/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ pub fn get_target_dir(meta: &Metadata) -> PathBuf {
269269
output
270270
}
271271

272-
/// Determines where the sysroot of this exeuction is
272+
/// Determines where the sysroot of this execution is
273273
///
274274
/// Either in a user-specified spot by an envar, or in a default cache location.
275275
pub fn get_sysroot_dir() -> PathBuf {

‎src/tools/miri/miri-script/src/commands.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ impl Command {
255255
cmd!(sh, "git fetch http://localhost:{JOSH_PORT}/rust-lang/rust.git@{commit}{JOSH_FILTER}.git")
256256
.run()
257257
.map_err(|e| {
258-
// Try to un-do the previous `git commit`, to leave the repo in the state we found it it.
258+
// Try to un-do the previous `git commit`, to leave the repo in the state we found it.
259259
cmd!(sh, "git reset --hard HEAD^")
260260
.run()
261261
.expect("FAILED to clean up again after failed `git fetch`, sorry for that");

‎src/tools/miri/src/borrow_tracker/stacked_borrows/stack.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use crate::borrow_tracker::{
99
};
1010
use crate::ProvenanceExtra;
1111

12-
/// Exactly what cache size we should use is a difficult tradeoff. There will always be some
12+
/// Exactly what cache size we should use is a difficult trade-off. There will always be some
1313
/// workload which has a `BorTag` working set which exceeds the size of the cache, and ends up
1414
/// falling back to linear searches of the borrow stack very often.
1515
/// The cost of making this value too large is that the loop in `Stack::insert` which ensures the

‎src/tools/miri/src/borrow_tracker/tree_borrows/diagnostics.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ struct DisplayFmtWrapper {
390390
warning_text: S,
391391
}
392392

393-
/// Formating of the permissions on each range.
393+
/// Formatting of the permissions on each range.
394394
///
395395
/// Example:
396396
/// ```rust,ignore (private type)
@@ -422,7 +422,7 @@ struct DisplayFmtPermission {
422422
range_sep: S,
423423
}
424424

425-
/// Formating of the tree structure.
425+
/// Formatting of the tree structure.
426426
///
427427
/// Example:
428428
/// ```rust,ignore (private type)
@@ -487,7 +487,7 @@ struct DisplayFmtAccess {
487487
meh: S,
488488
}
489489

490-
/// All parameters to determine how the tree is formated.
490+
/// All parameters to determine how the tree is formatted.
491491
struct DisplayFmt {
492492
wrapper: DisplayFmtWrapper,
493493
perm: DisplayFmtPermission,

‎src/tools/miri/src/borrow_tracker/tree_borrows/perms.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ impl Permission {
202202
Self { inner: Frozen }
203203
}
204204

205-
/// Default initial permission of the root of a new tre at out-of-bounds positions.
205+
/// Default initial permission of the root of a new tree at out-of-bounds positions.
206206
/// Must *only* be used for the root, this is not in general an "initial" permission!
207207
pub fn new_disabled() -> Self {
208208
Self { inner: Disabled }

‎src/tools/miri/src/borrow_tracker/tree_borrows/tree/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ mod spurious_read {
483483
/// that causes UB in the target but not in the source.
484484
/// This implementation simply explores the reachable space
485485
/// by all sequences of `TestEvent`.
486-
/// This function can be instanciated with `RetX` and `RetY`
486+
/// This function can be instantiated with `RetX` and `RetY`
487487
/// among `NoRet` or `AllowRet` to resp. forbid/allow `x`/`y` to lose their
488488
/// protector.
489489
fn distinguishable<RetX, RetY>(&self, other: &Self) -> bool

‎src/tools/miri/src/concurrency/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ pub enum BlockReason {
111111
Condvar(CondvarId),
112112
/// Blocked on a reader-writer lock.
113113
RwLock(RwLockId),
114-
/// Blocled on a Futex variable.
114+
/// Blocked on a Futex variable.
115115
Futex { addr: u64 },
116116
/// Blocked on an InitOnce.
117117
InitOnce(InitOnceId),

‎src/tools/miri/src/concurrency/weak_memory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
//! One consequence of this difference is that safe/sound Rust allows for more operations on atomic locations
4949
//! than the C++20 atomic API was intended to allow, such as non-atomically accessing
5050
//! a previously atomically accessed location, or accessing previously atomically accessed locations with a differently sized operation
51-
//! (such as accessing the top 16 bits of an AtomicU32). These scenarios are generally undiscussed in formalisations of C++ memory model.
51+
//! (such as accessing the top 16 bits of an AtomicU32). These scenarios are generally undiscussed in formalizations of C++ memory model.
5252
//! In Rust, these operations can only be done through a `&mut AtomicFoo` reference or one derived from it, therefore these operations
5353
//! can only happen after all previous accesses on the same locations. This implementation is adapted to allow these operations.
5454
//! A mixed atomicity read that races with writes, or a write that races with reads or writes will still cause UBs to be thrown.

‎src/tools/miri/src/machine.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,11 +206,11 @@ pub enum Provenance {
206206
/// whether *some* exposed pointer could have done what we want to do, and if the answer is yes
207207
/// then we allow the access. This allows too much code in two ways:
208208
/// - The same wildcard pointer can "take the role" of multiple different exposed pointers on
209-
/// subsequenct memory accesses.
209+
/// subsequent memory accesses.
210210
/// - In the aliasing model, we don't just have to know the borrow tag of the pointer used for
211211
/// the access, we also have to update the aliasing state -- and that update can be very
212212
/// different depending on which borrow tag we pick! Stacked Borrows has support for this by
213-
/// switching to a stack that is only approximately known, i.e. we overapproximate the effect
213+
/// switching to a stack that is only approximately known, i.e. we over-approximate the effect
214214
/// of using *any* exposed pointer for this access, and only keep information about the borrow
215215
/// stack that would be true with all possible choices.
216216
Wildcard,

‎src/tools/miri/src/shims/unix/mem.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! calls to munmap, but for a very different reason. In principle, according to the man pages, it
1212
//! is possible to unmap arbitrary regions of address space. But in a high-level language like Rust
1313
//! this amounts to partial deallocation, which LLVM does not support. So any attempt to call our
14-
//! munmap shim which would partily unmap a region of address space previously mapped by mmap will
14+
//! munmap shim which would partially unmap a region of address space previously mapped by mmap will
1515
//! report UB.
1616
1717
use crate::*;
@@ -78,7 +78,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
7878
// * The implementation does not support the combination of accesses requested in the
7979
// prot argument.
8080
//
81-
// Miri doesn't support MAP_FIXED or any any protections other than PROT_READ|PROT_WRITE.
81+
// Miri doesn't support MAP_FIXED or any protections other than PROT_READ|PROT_WRITE.
8282
if flags & map_fixed != 0 || prot != prot_read | prot_write {
8383
this.set_last_error(this.eval_libc("ENOTSUP"))?;
8484
return Ok(this.eval_libc("MAP_FAILED"));

‎src/tools/miri/src/shims/unix/sync.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ fn reacquire_cond_mutex<'mir, 'tcx: 'mir>(
390390
Ok(())
391391
}
392392

393-
/// After a thread waiting on a condvar was signalled:
393+
/// After a thread waiting on a condvar was signaled:
394394
/// Reacquire the conditional variable and remove the timeout callback if any
395395
/// was registered.
396396
fn post_cond_signal<'mir, 'tcx: 'mir>(

‎src/tools/miri/src/shims/x86/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ fn int_abs<'tcx>(
757757
Ok(())
758758
}
759759

760-
/// Splits `op` (which must be a SIMD vector) into 128-bit chuncks.
760+
/// Splits `op` (which must be a SIMD vector) into 128-bit chunks.
761761
///
762762
/// Returns a tuple where:
763763
/// * The first element is the number of 128-bit chunks (let's call it `N`).
@@ -788,7 +788,7 @@ fn split_simd_to_128bit_chunks<'tcx, P: Projectable<'tcx, Provenance>>(
788788
Ok((num_chunks, items_per_chunk, chunked_op))
789789
}
790790

791-
/// Horizontaly performs `which` operation on adjacent values of
791+
/// Horizontally performs `which` operation on adjacent values of
792792
/// `left` and `right` SIMD vectors and stores the result in `dest`.
793793
/// "Horizontal" means that the i-th output element is calculated
794794
/// from the elements 2*i and 2*i+1 of the concatenation of `left` and
@@ -1256,7 +1256,7 @@ fn packusdw<'tcx>(
12561256

12571257
/// Negates elements from `left` when the corresponding element in
12581258
/// `right` is negative. If an element from `right` is zero, zero
1259-
/// is writen to the corresponding output element.
1259+
/// is written to the corresponding output element.
12601260
/// In other words, multiplies `left` with `right.signum()`.
12611261
fn psign<'tcx>(
12621262
this: &mut crate::MiriInterpCx<'_, 'tcx>,

‎tests/ui/associated-types/associated-types-eq-2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
struct Bar;
55
struct Qux;
66

7-
// Tests for a a non generic trait
7+
// Tests for a non generic trait
88
pub trait Tr1 {
99
type A;
1010
fn boo(&self) -> <Self as Tr1>::A;

‎tests/ui/coherence/associated-type2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! A regression test for #120343. The overlap error was previously
22
//! silenced in coherence because projecting `<() as ToUnit>::Unit`
3-
//! failed. Then then silenced the missing items error in the `ToUnit`
3+
//! failed. Then silenced the missing items error in the `ToUnit`
44
//! impl, causing us to not emit any errors and ICEing due to a
55
//! `span_delay_bug`.
66

‎tests/ui/higher-ranked/leak-check/candidate-from-env-universe-err-project.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ fn function3<T: Trait<'static, Assoc = usize>>() {
4949
// Trying to normalize the type `for<'a> fn(<T as Trait<'a>>::Assoc)`
5050
// only gets to `<T as Trait<'a>>::Assoc` once `'a` has been already
5151
// instantiated, causing us to prefer the where-bound over the impl
52-
// resulting in a placeholder error. Even if were were to also use the
52+
// resulting in a placeholder error. Even if we were to also use the
5353
// leak check during candidate selection for normalization, this
5454
// case would still not compile.
5555
let _higher_ranked_norm: for<'a> fn(<T as Trait<'a>>::Assoc) = |_| ();

‎tests/ui/parser/label-is-actually-char.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Note: it's ok to interpret 'a as 'a', but but not ok to interpret 'abc as
1+
// Note: it's ok to interpret 'a as 'a', but not ok to interpret 'abc as
22
// 'abc' because 'abc' is not a valid char literal.
33

44
fn main() {

‎tests/ui/type-alias-impl-trait/defined-by-user-annotation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// User type annotation in fn bodies is a a valid defining site for opaque types.
1+
// User type annotation in fn bodies is a valid defining site for opaque types.
22
//@ check-pass
33
#![feature(type_alias_impl_trait)]
44

‎tests/ui/type-alias-impl-trait/equal-lifetime-params-not-ok.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mod mod3 {
2525
}
2626

2727
// This is similar to the previous cases in that 'a is equal to 'static,
28-
// which is is some sense an implicit parameter to `Opaque`.
28+
// which is some sense an implicit parameter to `Opaque`.
2929
// For example, given a defining use `Opaque<'a> := &'a ()`,
3030
// it is ambiguous whether `Opaque<'a> := &'a ()` or `Opaque<'a> := &'static ()`
3131
mod mod4 {

0 commit comments

Comments
 (0)
Please sign in to comment.