Skip to content

Commit e08c698

Browse files
committed
w
1 parent f343985 commit e08c698

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_middle/src/ty

1 file changed

+2
-2
lines changed

compiler/rustc_middle/src/ty/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1186,7 +1186,7 @@ impl<'tcx> TypingEnv<'tcx> {
11861186
}
11871187

11881188
/// Modify the `typing_mode` to `PostAnalysis` and eagerly reveal all
1189-
/// opaque types in the `param_env`.
1189+
/// opaque types in the `param_env`.
11901190
pub fn with_reveal_all_normalized(self, tcx: TyCtxt<'tcx>) -> TypingEnv<'tcx> {
11911191
let TypingEnv { typing_mode: _, param_env } = self;
11921192
let param_env = param_env.with_reveal_all_normalized(tcx);
@@ -1196,7 +1196,7 @@ impl<'tcx> TypingEnv<'tcx> {
11961196
/// Combine this typing environment with the given `value` to be used by
11971197
/// not (yet) canonicalized queries. This only works if the value does not
11981198
/// contain anything local to some `InferCtxt`, i.e. inference variables or
1199-
/// placeholders.
1199+
/// placeholders.
12001200
pub fn as_query_input<T>(self, value: T) -> PseudoCanonicalInput<'tcx, T>
12011201
where
12021202
T: TypeVisitable<TyCtxt<'tcx>>,

0 commit comments

Comments
 (0)