Skip to content

Commit 3157114

Browse files
author
xiaoxiangxianzi
committedMar 27, 2024
chore: fix some comments
Signed-off-by: xiaoxiangxianzi <[email protected]>
1 parent 0dcc130 commit 3157114

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed
 

‎INSTALL.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ toolchain.
151151
directory and uncomment the line `MSYS2_PATH_TYPE=inherit`.
152152

153153
You could install and use MSYS2's version of git instead with `pacman`,
154-
however this is not recommended as it's excrutiatingly slow, and not frequently
155-
tested for compatability.
154+
however this is not recommended as it's excruciatingly slow, and not frequently
155+
tested for compatibility.
156156

157157
3. Start a MINGW64 or MINGW32 shell (depending on whether you want 32-bit
158158
or 64-bit Rust) either from your start menu, or by running `mingw64.exe`

‎compiler/rustc_ast_pretty/src/pprust/state/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub(crate) struct FixupContext {
7575
}
7676

7777
/// The default amount of fixing is minimal fixing. Fixups should be turned on
78-
/// in a targetted fashion where needed.
78+
/// in a targeted fashion where needed.
7979
impl Default for FixupContext {
8080
fn default() -> Self {
8181
FixupContext {

‎compiler/rustc_borrowck/src/type_check/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ impl<'a, 'b, 'tcx> TypeVerifier<'a, 'b, 'tcx> {
592592
}
593593
self.cx.borrowck_context.constraints.outlives_constraints.push(constraint)
594594
}
595-
// If the region is live at at least one location in the promoted MIR,
595+
// If the region is live at least one location in the promoted MIR,
596596
// then add a liveness constraint to the main MIR for this region
597597
// at the location provided as an argument to this method
598598
//

‎compiler/rustc_const_eval/src/const_eval/eval_queries.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ fn const_validate_mplace<'mir, 'tcx>(
409409
}
410410
};
411411
ecx.const_validate_operand(&mplace.into(), path, &mut ref_tracking, mode)
412-
// Instead of just reporting the `InterpError` via the usual machinery, we give a more targetted
412+
// Instead of just reporting the `InterpError` via the usual machinery, we give a more targeted
413413
// error about the validation failure.
414414
.map_err(|error| report_validation_error(&ecx, error, alloc_id))?;
415415
inner = true;

‎compiler/rustc_hir_analysis/src/hir_ty_lowering/lint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use super::HirTyLowerer;
1111
impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
1212
/// Prohibit or lint against *bare* trait object types depending on the edition.
1313
///
14-
/// *Bare* trait object types are ones that aren't preceeded by the keyword `dyn`.
14+
/// *Bare* trait object types are ones that aren't preceded by the keyword `dyn`.
1515
/// In edition 2021 and onward we emit a hard error for them.
1616
pub(super) fn prohibit_or_lint_bare_trait_object_ty(
1717
&self,

‎compiler/rustc_parse/src/parser/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2768,7 +2768,7 @@ impl<'a> Parser<'a> {
27682768
};
27692769
return if self.token.kind == token::CloseDelim(Delimiter::Parenthesis) {
27702770
// We know for sure we have seen `for ($SOMETHING in $EXPR)`, so we recover the
2771-
// parser state and emit a targetted suggestion.
2771+
// parser state and emit a targeted suggestion.
27722772
let span = vec![start_span, self.token.span];
27732773
let right = self.prev_token.span.between(self.look_ahead(1, |t| t.span));
27742774
self.bump(); // )

‎library/core/src/pin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@
806806
//!
807807
//! As a consequence, the struct *must not* be [`#[repr(packed)]`][packed].
808808
//!
809-
//! 3. *Structural Notice of Destruction.* You must uphold the the
809+
//! 3. *Structural Notice of Destruction.* You must uphold the
810810
//! [`Drop` guarantee][drop-guarantee]: once your struct is pinned, the struct's storage cannot
811811
//! be re-used without calling the structurally-pinned fields' destructors, as well.
812812
//!

‎tests/rustdoc-gui/target.goml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Check that the targetted element has the expected styles.
1+
// Check that the targeted element has the expected styles.
22
go-to: "file://" + |DOC_PATH| + "/lib2/struct.Foo.html#method.a_method"
33
show-text: true
44

0 commit comments

Comments
 (0)