File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -426,10 +426,10 @@ struct HandlerInner {
426
426
427
427
future_breakage_diagnostics : Vec < Diagnostic > ,
428
428
429
- /// The [`unstable_expect_diagnostics`] should be empty when this struct is
429
+ /// The [`Self:: unstable_expect_diagnostics`] should be empty when this struct is
430
430
/// dropped. However, it can have values if the compilation is stopped early
431
431
/// or is only partially executed. To avoid ICEs, like in rust#94953 we only
432
- /// check if [`unstable_expect_diagnostics`] is empty, if the expectation ids
432
+ /// check if [`Self:: unstable_expect_diagnostics`] is empty, if the expectation ids
433
433
/// have been converted.
434
434
check_unstable_expect_diagnostics : bool ,
435
435
Original file line number Diff line number Diff line change @@ -162,14 +162,14 @@ rustc_queries! {
162
162
/// to ensure that all expectations can be fulfilled.
163
163
///
164
164
/// This is an extra query to enable other drivers (like rustdoc) to
165
- /// only execute a small subset of the [ `analysis`] query, while allowing
165
+ /// only execute a small subset of the `analysis` query, while allowing
166
166
/// lints to be expected. In rustc, this query will be executed as part of
167
- /// the [ `analysis`] query and doesn't have to be called a second time.
167
+ /// the `analysis` query and doesn't have to be called a second time.
168
168
///
169
169
/// Tools can additionally pass in a tool filter. That will restrict the
170
170
/// expectations to only trigger for lints starting with the listed tool
171
171
/// name. This is useful for cases were not all linting code from rustc
172
- /// was called. With the default `none ` all registered lints will also
172
+ /// was called. With the default `None ` all registered lints will also
173
173
/// be checked for expectation fulfillment.
174
174
query check_expectations( key: Option <Symbol >) -> ( ) {
175
175
eval_always
You can’t perform that action at this time.
0 commit comments