Skip to content

Commit 84bcd40

Browse files
committed
fix query description
1 parent 0b32cf3 commit 84bcd40

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

compiler/rustc_middle/src/query/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1662,14 +1662,14 @@ rustc_queries! {
16621662
query try_normalize_generic_arg_after_erasing_regions(
16631663
goal: ParamEnvAnd<'tcx, GenericArg<'tcx>>
16641664
) -> Result<GenericArg<'tcx>, NoSolution> {
1665-
desc { "trying to normalize `{}`", goal.value }
1665+
desc { "normalizing `{}`", goal.value }
16661666
}
16671667

16681668
/// Do not call this query directly: invoke `try_normalize_erasing_regions` instead.
16691669
query try_normalize_mir_const_after_erasing_regions(
16701670
goal: ParamEnvAnd<'tcx, mir::ConstantKind<'tcx>>
16711671
) -> Result<mir::ConstantKind<'tcx>, NoSolution> {
1672-
desc { "trying to normalize `{}`", goal.value }
1672+
desc { "normalizing `{}`", goal.value }
16731673
}
16741674

16751675
query implied_outlives_bounds(

0 commit comments

Comments
 (0)