diff options
author | Pratik <pratik.96@gmail.com> | 2015-09-26 00:51:46 +0530 |
---|---|---|
committer | Pratik <pratik.96@gmail.com> | 2015-09-26 00:51:46 +0530 |
commit | 1fb209289767bc04f63513b0a0558dc6b912c949 (patch) | |
tree | 449f6e93952aee62c88a6119a10ab450359490f9 /activemodel/lib/active_model/naming.rb | |
parent | 3c52b2000cbee716b5e449974c312c4fb552f64f (diff) | |
download | rails-1fb209289767bc04f63513b0a0558dc6b912c949.tar.gz rails-1fb209289767bc04f63513b0a0558dc6b912c949.tar.bz2 rails-1fb209289767bc04f63513b0a0558dc6b912c949.zip |
Fixed humane -> human [ci skip]
Diffstat (limited to 'activemodel/lib/active_model/naming.rb')
-rw-r--r-- | activemodel/lib/active_model/naming.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/naming.rb b/activemodel/lib/active_model/naming.rb index 213f2d5b6a..de5fb27467 100644 --- a/activemodel/lib/active_model/naming.rb +++ b/activemodel/lib/active_model/naming.rb @@ -164,7 +164,7 @@ module ActiveModel @route_key << "_index" if @plural == @singular end - # Transform the model name into a more humane format, using I18n. By default, + # Transform the model name into a more human format, using I18n. By default, # it will underscore then humanize the class name. # # class BlogPost |