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
Version: 0.20.0 (using Parser 2.1.7, running on ruby 2.0.0 x86_64-darwin12.3.0)
We have had a few examples of the autocorrect messing up strings:
type: ['offline','offline_payment']
was turned into:
reservation_type: %w(offlin e offline_payment)
Also:
I18n.t('models.payment.invoice_description',:property_name =>property.name)
was turned into
I18n.t('models.payment.invoice_descriptio n', property_name: property.name)
The text was updated successfully, but these errors were encountered:
Another example:
bar_colors: ['958c12','953579','ff5800','0085cc']
Changed to:
bar_colors: %w(9 58c12 953 579 ff580 0 0085cc)
Sorry, something went wrong.
@jonas054 Would you have a look at this?
Yes, that one's for me.
66df89c
Merge pull request #951 from jonas054/fix_943_autocorrect
4ca7750
[Fix #943] Fix auto-correct interference with SpaceAfterComma
jonas054
No branches or pull requests
Version: 0.20.0 (using Parser 2.1.7, running on ruby 2.0.0 x86_64-darwin12.3.0)
We have had a few examples of the autocorrect messing up strings:
was turned into:
Also:
was turned into
The text was updated successfully, but these errors were encountered: