We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When a user mistypes a configuration option, we could suggest other options that are named similarly to the unknown option.
We could use a string distance such as Levenshtein's one to find the option with the most similar name and display that one.
Guava might add a function for computing string distances (google/guava#1175), we could use this when it is actually in Guava.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When a user mistypes a configuration option, we could suggest other options that are named similarly to the unknown option.
We could use a string distance such as Levenshtein's one to find the option with the most similar name and display that one.
Guava might add a function for computing string distances (google/guava#1175), we could use this when it is actually in Guava.
The text was updated successfully, but these errors were encountered: