Skip to content

Commit bad6e34

Browse files
authored
Unrolled build for rust-lang#119487
Rollup merge of rust-lang#119487 - gurry:improve-freshner-comment, r=Nilstrieb Minor improvements in comment on `freshen.rs` - Removed a stray "if" - Changed a numeric "2" to "two" because it reads better
2 parents 1a47f5b + 884cb41 commit bad6e34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_infer/src/infer/freshen.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! Freshening is used primarily to get a good type for inserting into a cache. The result
66
//! summarizes what the type inferencer knows "so far". The primary place it is used right now is
77
//! in the trait matching algorithm, which needs to be able to cache whether an `impl` self type
8-
//! matches some other type X -- *without* affecting `X`. That means if that if the type `X` is in
8+
//! matches some other type X -- *without* affecting `X`. That means that if the type `X` is in
99
//! fact an unbound type variable, we want the match to be regarded as ambiguous, because depending
1010
//! on what type that type variable is ultimately assigned, the match may or may not succeed.
1111
//!
@@ -21,7 +21,7 @@
2121
//! Because of the manipulation required to handle closures, doing arbitrary operations on
2222
//! freshened types is not recommended. However, in addition to doing equality/hash
2323
//! comparisons (for caching), it is possible to do a `ty::_match` operation between
24-
//! 2 freshened types - this works even with the closure encoding.
24+
//! two freshened types - this works even with the closure encoding.
2525
//!
2626
//! __An important detail concerning regions.__ The freshener also replaces *all* free regions with
2727
//! 'erased. The reason behind this is that, in general, we do not take region relationships into

0 commit comments

Comments
 (0)