-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
fix remaining lint messages #5893
Conversation
needs a rustup already 😭 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
didn't find anything this time, looks great!
@bors r+
if let Some(ref rec) = Self::check_binop(cx, kind.node, lhs, rhs) { | ||
Self::emit_warning(cx, item, rec.clone()); | ||
if let Some(rec) = Self::check_binop(cx, kind.node, lhs, rhs) { | ||
Self::emit_warning(cx, item, rec); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol, I like the cleanup sneaking in the PR
👍
@bors r=yaahc |
📌 Commit be3e695 has been approved by |
☀️ Test successful - checks-action_dev_test, checks-action_remark_test, checks-action_test |
r? @yaahc
changelog: make remaining lint messages adhere to rustc dev guide lint message convention.