Skip to content

Commit e97be25

Browse files
committed
Fix some typos
Signed-off-by: fudancoder <[email protected].>
1 parent 6734a04 commit e97be25

6 files changed

+8
-8
lines changed

tests/ui/lint/lint-overflowing-ops.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Tests that overflowing or bound-exceeding operations
2-
// are correclty linted including when they are const promoted
2+
// are correctly linted including when they are const promoted
33

44
// We are using "-Z deduplicate-diagnostics=yes" because different
55
// build configurations emit different number of duplicate diagnostics

tests/ui/lint/unconditional_panic_promoted.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
fn main() {
44
// MIR encodes this as a reborrow from a promoted constant.
5-
// But the array lenth can still be gotten from the type.
5+
// But the array length can still be gotten from the type.
66
let slice = &[0, 1];
77
let _ = slice[2]; //~ ERROR: this operation will panic at runtime [unconditional_panic]
88
}

tests/ui/moves/auxiliary/suggest-borrow-for-generic-arg-aux.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! auxiliary definitons for suggest-borrow-for-generic-arg.rs, to ensure the suggestion works on
1+
//! auxiliary definitions for suggest-borrow-for-generic-arg.rs, to ensure the suggestion works on
22
//! functions defined in other crates.
33
44
use std::io::{self, Read, Write};

tests/ui/moves/suggest-borrow-for-generic-arg.fixed

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//! Test suggetions to borrow generic arguments instead of moving. Tests for other instances of this
2-
//! can be found in `moved-value-on-as-ref-arg.rs` and `borrow-closures-instead-of-move.rs`
1+
//! Test suggestions to borrow generic arguments instead of moving. Tests for other instances of
2+
//! this can be found in `moved-value-on-as-ref-arg.rs` and `borrow-closures-instead-of-move.rs`
33
//@ run-rustfix
44
//@ aux-crate:aux=suggest-borrow-for-generic-arg-aux.rs
55
//@ edition: 2021

tests/ui/moves/suggest-borrow-for-generic-arg.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//! Test suggetions to borrow generic arguments instead of moving. Tests for other instances of this
2-
//! can be found in `moved-value-on-as-ref-arg.rs` and `borrow-closures-instead-of-move.rs`
1+
//! Test suggestions to borrow generic arguments instead of moving. Tests for other instances of
2+
//! this can be found in `moved-value-on-as-ref-arg.rs` and `borrow-closures-instead-of-move.rs`
33
//@ run-rustfix
44
//@ aux-crate:aux=suggest-borrow-for-generic-arg-aux.rs
55
//@ edition: 2021

tests/ui/regions/regions-assoc-type-in-supertrait-outlives-container.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Test that we are imposing the requirement that every associated
22
// type of a bound that appears in the where clause on a struct must
33
// outlive the location in which the type appears, even when the
4-
// associted type is in a supertype. Issue #22246.
4+
// associated type is in a supertype. Issue #22246.
55

66
#![allow(dead_code)]
77

0 commit comments

Comments
 (0)