Print valid --print requests if request is invalid#103839
Merged
bors merged 1 commit intorust-lang:masterfrom Nov 2, 2022
Merged
Print valid --print requests if request is invalid#103839bors merged 1 commit intorust-lang:masterfrom
--print requests if request is invalid#103839bors merged 1 commit intorust-lang:masterfrom
Conversation
When someone makes a typo, it can be useful to see the valid options. This is also useful if someone wants to find out about all the options.
Collaborator
|
r? @lcnr (rustbot has picked a reviewer for you, use r? to override) |
| Some(&(_, print_request)) => print_request, | ||
| None => { | ||
| let prints = | ||
| PRINT_REQUESTS.iter().map(|(name, _)| format!("`{name}`")).collect::<Vec<_>>(); |
Contributor
There was a problem hiding this comment.
It would be nice to use levenshtein distance to find an almost-exact match and suggest that rather than listing all of them but this is good as-is.
Contributor
|
@bors r+ rollup |
Collaborator
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Nov 2, 2022
…earth Rollup of 8 pull requests Successful merges: - rust-lang#103072 (compiletest: set the dylib path when gathering target cfg) - rust-lang#103084 (Derive `Eq` and `Hash` for `ControlFlow`) - rust-lang#103575 (Change #[suggestion_*] attributes to use style="...") - rust-lang#103637 (Use stdio in UWP apps) - rust-lang#103638 (Add `multivalue` target feature to WASM target) - rust-lang#103781 (Detect unused files in `src/test/mir-opt` and error on them in tidy.) - rust-lang#103837 (Migrate sidebar-links-color GUI test to functions) - rust-lang#103839 (Print valid `--print` requests if request is invalid) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When someone makes a typo, it can be useful to see the valid options. This is also useful if someone wants to find out about all the options.