Skip to content

Commit 7ee0aea

Browse files
authored
Rollup merge of #103339 - Rageking8:fix-some-typos, r=fee1-dead
Fix some typos
2 parents e67f09a + 62a2a1d commit 7ee0aea

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

compiler/rustc_data_structures/src/sso/set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub struct SsoHashSet<T> {
2727
map: SsoHashMap<T, ()>,
2828
}
2929

30-
/// Adapter function used ot return
30+
/// Adapter function used to return
3131
/// result if SsoHashMap functions into
3232
/// result SsoHashSet should return.
3333
#[inline(always)]

compiler/rustc_middle/src/mir/interpret/queries.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ impl<'tcx> TyCtxt<'tcx> {
5151

5252
match ty::Instance::resolve_opt_const_arg(
5353
self, param_env,
54-
// FIXME: maybe have a seperate version for resolving mir::UnevaluatedConst?
54+
// FIXME: maybe have a separate version for resolving mir::UnevaluatedConst?
5555
ct.def, ct.substs,
5656
) {
5757
Ok(Some(instance)) => {

compiler/rustc_trait_selection/src/traits/project.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ fn project_and_unify_type<'cx, 'tcx>(
264264
};
265265
debug!(?normalized, ?obligations, "project_and_unify_type result");
266266
let actual = obligation.predicate.term;
267-
// For an example where this is neccessary see src/test/ui/impl-trait/nested-return-type2.rs
267+
// For an example where this is necessary see src/test/ui/impl-trait/nested-return-type2.rs
268268
// This allows users to omit re-mentioning all bounds on an associated type and just use an
269269
// `impl Trait` for the assoc type to add more bounds.
270270
let InferOk { value: actual, obligations: new } =

src/test/ui/generic-associated-types/bugs/issue-91762.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// check-fail
22
// known-bug
33

4-
// We almost certaintly want this to pass, but
4+
// We almost certainly want this to pass, but
55
// it's particularly difficult currently, because we need a way of specifying
66
// that `<Self::Base as Functor>::With<T> = Self` without using that when we have
77
// a `U`. See `https://github.com/rust-lang/rust/pull/92728` for a (hacky)

src/test/ui/let-else/let-else-non-diverging.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fn main() {
1111

1212
// Ensure that uninhabited types do not "diverge".
1313
// This might be relaxed in the future, but when it is,
14-
// it should be an explicitly wanted descision.
14+
// it should be an explicitly wanted decision.
1515
let Some(x) = Some(1) else { foo::<Uninhabited>() }; //~ ERROR does not diverge
1616
}
1717

src/test/ui/traits/trait-upcasting/multiple-occurence-ambiguousity.stderr src/test/ui/traits/trait-upcasting/multiple-occurrence-ambiguousity.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0308]: mismatched types
2-
--> $DIR/multiple-occurence-ambiguousity.rs:21:26
2+
--> $DIR/multiple-occurrence-ambiguousity.rs:21:26
33
|
44
LL | let t: &dyn Bar<_> = s;
55
| ----------- ^ expected trait `Bar`, found trait `Foo`

0 commit comments

Comments
 (0)