diff options
| author | Jubilee <46493976+workingjubilee@users.noreply.github.com> | 2021-09-23 17:31:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-23 17:31:47 -0700 |
| commit | 1875cecfd46a347dac9c9e23910e4b39be3a9d5f (patch) | |
| tree | e94ed1ef7a9b83557fe6793002e9517c57d6a193 | |
| parent | 384dd53641a2d6b025c5d90805c9f839ac4adb51 (diff) | |
| parent | c713ffbe39e2e3213a218491d139638344fce68d (diff) | |
| download | rust-1875cecfd46a347dac9c9e23910e4b39be3a9d5f.tar.gz rust-1875cecfd46a347dac9c9e23910e4b39be3a9d5f.zip | |
Rollup merge of #89200 - hkmatsumoto:patch, r=workingjubilee
Fix typo
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index c13d7720e37..b4f7a9fa8e9 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -599,7 +599,7 @@ rustc_queries! { desc { "computing the inferred outlives predicates for items in this crate" } } - /// Maps from an impl/trait `DefId to a list of the `DefId`s of its items. + /// Maps from an impl/trait `DefId` to a list of the `DefId`s of its items. query associated_item_def_ids(key: DefId) -> &'tcx [DefId] { desc { |tcx| "collecting associated items of `{}`", tcx.def_path_str(key) } } |
