Skip to content

Commit ac23ed6

Browse files
authored
Merge pull request rails#47983 from Jbrito6492/Issue47956
Fix rails#47956: Update comment to reference values with single quotes
2 parents f7b56f9 + 43ec573 commit ac23ed6

File tree

4 files changed

+4
-4
lines changed
  • actionmailbox/test/dummy/config/locales
  • actiontext/test/dummy/config/locales
  • activestorage/test/dummy/config/locales
  • railties/lib/rails/generators/rails/app/templates/config/locales

4 files changed

+4
-4
lines changed

actionmailbox/test/dummy/config/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# Instead, surround them with single quotes.
2525
#
2626
# en:
27-
# "true": "foo"
27+
# 'true': 'foo'
2828
#
2929
# To learn more, please read the Rails Internationalization guide
3030
# available at https://guides.rubyonrails.org/i18n.html.

actiontext/test/dummy/config/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# Instead, surround them with single quotes.
2525
#
2626
# en:
27-
# "true": "foo"
27+
# 'true': 'foo'
2828
#
2929
# To learn more, please read the Rails Internationalization guide
3030
# available at https://guides.rubyonrails.org/i18n.html.

activestorage/test/dummy/config/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# Instead, surround them with single quotes.
2525
#
2626
# en:
27-
# "true": "foo"
27+
# 'true': 'foo'
2828
#
2929
# To learn more, please read the Rails Internationalization guide
3030
# available at https://guides.rubyonrails.org/i18n.html.

railties/lib/rails/generators/rails/app/templates/config/locales/en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# Instead, surround them with single quotes.
2525
#
2626
# en:
27-
# "true": "foo"
27+
# 'true': 'foo'
2828
#
2929
# To learn more, please read the Rails Internationalization guide
3030
# available at https://guides.rubyonrails.org/i18n.html.

0 commit comments

Comments
 (0)