diff options
author | Dennis Taylor <dtaylor@fortinet.com> | 2012-11-09 11:23:51 -0800 |
---|---|---|
committer | Dennis Taylor <dtaylor@fortinet.com> | 2012-11-09 11:23:51 -0800 |
commit | ba291a67dfaec3afdd82d3c7aa74e8fa70c11726 (patch) | |
tree | 9eb629aade9a62cc44240f0c0d1b218496270024 | |
parent | 38411b89fc6b1ddf29a39fed174b8b7dd0951764 (diff) | |
download | rails-ba291a67dfaec3afdd82d3c7aa74e8fa70c11726.tar.gz rails-ba291a67dfaec3afdd82d3c7aa74e8fa70c11726.tar.bz2 rails-ba291a67dfaec3afdd82d3c7aa74e8fa70c11726.zip |
Trivial documentation fix for ActiveModel::Naming comment.
-rw-r--r-- | activemodel/lib/active_model/naming.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/naming.rb b/activemodel/lib/active_model/naming.rb index eb8265d8c6..264880eecd 100644 --- a/activemodel/lib/active_model/naming.rb +++ b/activemodel/lib/active_model/naming.rb @@ -263,10 +263,10 @@ module ActiveModel # namespaced models regarding whether it's inside isolated engine. # # # For isolated engine: - # ActiveModel::Naming.route_key(Blog::Post) #=> post + # ActiveModel::Naming.singular_route_key(Blog::Post) #=> post # # # For shared engine: - # ActiveModel::Naming.route_key(Blog::Post) #=> blog_post + # ActiveModel::Naming.singular_route_key(Blog::Post) #=> blog_post def self.singular_route_key(record_or_class) model_name_from_record_or_class(record_or_class).singular_route_key end |