diff options
author | Greg Molnar <molnargerg@gmail.com> | 2013-11-27 19:13:37 +0100 |
---|---|---|
committer | Greg Molnar <molnargerg@gmail.com> | 2013-11-27 19:13:37 +0100 |
commit | aa0e1fac3e2988710f799795eaae2a06202540c6 (patch) | |
tree | 7aa9fbb08ca916cc3ffcbe68f5e2e7404b79dbe7 | |
parent | d4016f24fb5266b361f44da66de445abfbb086e1 (diff) | |
download | rails-aa0e1fac3e2988710f799795eaae2a06202540c6.tar.gz rails-aa0e1fac3e2988710f799795eaae2a06202540c6.tar.bz2 rails-aa0e1fac3e2988710f799795eaae2a06202540c6.zip |
[ci skip] removed singulars section from classify doc
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/inflections.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/inflections.rb b/activesupport/lib/active_support/core_ext/string/inflections.rb index b7b750c77b..cf9b1a4ec0 100644 --- a/activesupport/lib/active_support/core_ext/string/inflections.rb +++ b/activesupport/lib/active_support/core_ext/string/inflections.rb @@ -182,10 +182,6 @@ class String # # 'egg_and_hams'.classify # => "EggAndHam" # 'posts'.classify # => "Post" - # - # Singular names are not handled correctly. - # - # 'business'.classify # => "Business" def classify ActiveSupport::Inflector.classify(self) end |