aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorvzvu3k6k <vzvu3k6k@gmail.com>2019-07-30 03:10:56 +0900
committervzvu3k6k <vzvu3k6k@gmail.com>2019-07-30 03:18:05 +0900
commit515238bc6c29f3b89234db3ebf2cd5af90f2663e (patch)
tree601d16506ecab64cc5b87cb6d5d51e84c003acfc /activesupport
parent17b8cde6d16cee9a7b7d5daf1ef79d8facfcfbf6 (diff)
downloadrails-515238bc6c29f3b89234db3ebf2cd5af90f2663e.tar.gz
rails-515238bc6c29f3b89234db3ebf2cd5af90f2663e.tar.bz2
rails-515238bc6c29f3b89234db3ebf2cd5af90f2663e.zip
[ci skip] Fix unclosed tags in `Inflector` docs
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/inflector/transliterate.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector/transliterate.rb b/activesupport/lib/active_support/inflector/transliterate.rb
index 0751f8a3ad..3ba2d93ed8 100644
--- a/activesupport/lib/active_support/inflector/transliterate.rb
+++ b/activesupport/lib/active_support/inflector/transliterate.rb
@@ -116,7 +116,7 @@ module ActiveSupport
# If the optional parameter +locale+ is specified,
# the word will be parameterized as a word of that language.
# By default, this parameter is set to <tt>nil</tt> and it will use
- # the configured <tt>I18n.locale<tt>.
+ # the configured <tt>I18n.locale</tt>.
def parameterize(string, separator: "-", preserve_case: false, locale: nil)
# Replace accented chars with their ASCII equivalents.
parameterized_string = transliterate(string, locale: locale)