diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-08-27 20:02:21 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-08-27 20:02:21 +0530 |
commit | 63949ae0122afcad084c01b56dd0c1640322c75d (patch) | |
tree | f13be7420c34076d7b999d8ff02057314a3ce669 /activesupport/lib/active_support/inflector | |
parent | de2043ade69508070fbc80a6eb4f7d5bce58ca76 (diff) | |
download | rails-63949ae0122afcad084c01b56dd0c1640322c75d.tar.gz rails-63949ae0122afcad084c01b56dd0c1640322c75d.tar.bz2 rails-63949ae0122afcad084c01b56dd0c1640322c75d.zip |
Fix doc for singularize - `pluralized` => `singularized`
Diffstat (limited to 'activesupport/lib/active_support/inflector')
-rw-r--r-- | activesupport/lib/active_support/inflector/methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector/methods.rb b/activesupport/lib/active_support/inflector/methods.rb index d063fcb49c..ffdb7b53c4 100644 --- a/activesupport/lib/active_support/inflector/methods.rb +++ b/activesupport/lib/active_support/inflector/methods.rb @@ -36,7 +36,7 @@ module ActiveSupport # string. # # If passed an optional +locale+ parameter, the word will be - # pluralized using rules defined for that language. By default, + # singularized using rules defined for that language. By default, # this parameter is set to <tt>:en</tt>. # # 'posts'.singularize # => "post" |