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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
so far some of the test messages require escaping either single ' or double " quotes. this is error prone and and sometimes introduces confusions.
'
"
Describe the solution you'd like
we can easily resolve this issue by replacing all current and future usage of quotes into smart quotes ‘ ’ and “ ”
‘
’
“
”
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
@Dandandan @alamb @houqp and @jorgecarleitao WDYT?
Sorry, something went wrong.
I am not sure changing the error messages for the sake of easier testing makes sense to me.
What about using raw string literals in the tests instead?https://rahul-thakoor.github.io/rust-raw-string-literals/
I am not sure changing the error messages for the sake of easier testing makes sense to me. What about using raw string literals in the tests instead?https://rahul-thakoor.github.io/rust-raw-string-literals/
it's a great point - i'll close this in #581
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
so far some of the test messages require escaping either single
'
or double"
quotes. this is error prone and and sometimes introduces confusions.Describe the solution you'd like
we can easily resolve this issue by replacing all current and future usage of quotes into smart quotes
‘
’
and“
”
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: