summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorb-naber <bn263@gmx.de>2021-11-26 23:41:22 +0100
committerb-naber <bn263@gmx.de>2021-12-01 12:12:40 +0100
commit84bcd40927d0547d36df8f6419b4d060c8c5a840 (patch)
tree6e48cf63be58b73618baa3f998299d0aab76e6b5
parent0b32cf3a8d5bda2fb2599e658102e2d7bd70a07f (diff)
downloadrust-84bcd40927d0547d36df8f6419b4d060c8c5a840.tar.gz
fix query description
-rw-r--r--compiler/rustc_middle/src/query/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs
index 12665be3354..8c1ffa1be3a 100644
--- a/compiler/rustc_middle/src/query/mod.rs
+++ b/compiler/rustc_middle/src/query/mod.rs
@@ -1662,14 +1662,14 @@ rustc_queries! {
query try_normalize_generic_arg_after_erasing_regions(
goal: ParamEnvAnd<'tcx, GenericArg<'tcx>>
) -> Result<GenericArg<'tcx>, NoSolution> {
- desc { "trying to normalize `{}`", goal.value }
+ desc { "normalizing `{}`", goal.value }
}
/// Do not call this query directly: invoke `try_normalize_erasing_regions` instead.
query try_normalize_mir_const_after_erasing_regions(
goal: ParamEnvAnd<'tcx, mir::ConstantKind<'tcx>>
) -> Result<mir::ConstantKind<'tcx>, NoSolution> {
- desc { "trying to normalize `{}`", goal.value }
+ desc { "normalizing `{}`", goal.value }
}
query implied_outlives_bounds(