-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Replace Arg
with Param
#4462
Replace Arg
with Param
#4462
Conversation
Thanks! @bors r+ p=10 |
📌 Commit 2c28225 has been approved by |
Replace `Arg` with `Param` Fix build issue. Rustup to rust-lang/rust#63127 changelog: none
☀️ Test successful - checks-travis, status-appveyor |
@flip1995 Could I submit a PR to rust-lang/rust to fix toolstate? |
There is rust-lang/rust#63971 already |
@mati865 Oh, thanks! |
Oh, I just did that. But yeah in the future you just can open a PR in rust-lang/rust to update Clippy. The TL;DR version on how to update a submodule in rustc: # Assuming you already cloned the rust repo and you're in the correct dir
$ git submodule update --remote src/tools/clippy
$ cargo update -p clippy
$ git add -u
$ git commit -m "Update Clippy"
$ ./x.py test -i --stage 1 src/tools/clippy # This is optional and should succeed anyway
# Open a PR in rust-lang/rust |
Might be nice to add that script to our repo; I have my own version and I assume @matthiaskrgr also has some sort of script 😅 |
Add note to fix toolstate The idea from #4462 (comment) It's nice that we have the documentation to guide fix toolstate. changelog: none
Update Clippy cc rust-lang/rust-clippy#4462 r? @oli-obk @Manishearth
Fix build issue.
Rustup to rust-lang/rust#63127
changelog: none