diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-07-15 18:45:15 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-07-15 18:45:15 -0300 |
commit | 93e09f52781993f9f6b36af5b93e7d8892252271 (patch) | |
tree | 141dc9de75148f2d3a358a87e2524785e7a3e357 /guides | |
parent | 2b2e04150680498f043720de34f82e6dc647c14a (diff) | |
parent | 41fb06fa47b0c11d6b943163ec1bc8ce9fd4d229 (diff) | |
download | rails-93e09f52781993f9f6b36af5b93e7d8892252271.tar.gz rails-93e09f52781993f9f6b36af5b93e7d8892252271.tar.bz2 rails-93e09f52781993f9f6b36af5b93e7d8892252271.zip |
Merge pull request #16180 from rafaelfranca/rm-dirty
Improve Active Model Dirty API.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_model_basics.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_model_basics.md b/guides/source/active_model_basics.md index 1131a83c36..3eaeeff389 100644 --- a/guides/source/active_model_basics.md +++ b/guides/source/active_model_basics.md @@ -202,7 +202,7 @@ person.valid? # => raises ActiveModel::StrictValidationFa ### ActiveModel::Naming Naming adds a number of class methods which make the naming and routing -easier to manage. The module defines the `model_name` class method which +easier to manage. The module defines the `model_name` class method which will define a number of accessors using some `ActiveSupport::Inflector` methods. ```ruby @@ -220,4 +220,4 @@ Person.model_name.param_key # => "person" Person.model_name.i18n_key # => :person Person.model_name.route_key # => "people" Person.model_name.singular_route_key # => "person" -```
\ No newline at end of file +``` |