Rollup merge of #89200 - hkmatsumoto:patch, r=workingjubilee

Fix typo
This commit is contained in:
Jubilee 2021-09-23 17:31:47 -07:00 committed by GitHub
commit 1875cecfd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) }
}