Skip to content

Commit

Permalink
Merge pull request #585 from patrickgramatowski/Fix-typo-function-is-…
Browse files Browse the repository at this point in the history
…missing-closing-parenthesis

Fix typo: function is missing closing parenthesis
  • Loading branch information
radar committed Nov 25, 2021
2 parents 3e016c8 + 0d81422 commit 3ae91d3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/i18n.rb
Expand Up @@ -261,14 +261,14 @@ def exists?(key, _locale = nil, locale: _locale, **options)
#
# Setting a Hash using Ruby:
#
# store_translations(:de, :i18n => {
# :transliterate => {
# :rule => {
# "ü" => "ue",
# "ö" => "oe"
# }
# }
# )
# store_translations(:de, i18n: {
# transliterate: {
# rule: {
# 'ü' => 'ue',
# 'ö' => 'oe'
# }
# }
# })
#
# Setting a Proc:
#
Expand Down

0 comments on commit 3ae91d3

Please sign in to comment.