-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added TraitAlias to check_item() for missing_docs #111150
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
|
Some changes occurred in src/tools/cargo cc @ehuss |
sry, fixing the cargo commit |
This needs a test case, added to |
7381adf
to
8bd819d
Compare
Does that look right then? @rustbot review |
The Could you also squash commits into one after addressing all the comments? |
9555efc
to
7373c1f
Compare
add test and bless
@bors r+ |
Rollup of 7 pull requests Successful merges: - rust-lang#105583 (Operand::extract_field: only cast llval if it's a pointer and replace bitcast w/ pointercast.) - rust-lang#110094 (clean up `transmute`s in `core`) - rust-lang#111150 (added TraitAlias to check_item() for missing_docs) - rust-lang#111293 (rustc --explain E0726 - grammar fixing (it's => its + add a `the` where it felt right to do so)) - rust-lang#111300 (Emit while_true lint spanning the entire loop condition) - rust-lang#111301 (Remove calls to `mem::forget` and `mem::replace` in `Option::get_or_insert_with`.) - rust-lang#111303 (update Rust Unstable Book docs for `--extern force`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Issue #111025 should now be closed, right?. It wasn't auto-closed as the PR description didn't contain a trigger like Fixes. |
As in issue #111025 the
missing_docs
was not being triggered for trait aliases. I addedTraitAlias
to the pattern match for check_item(), and the lint seems to be behaving appropriately