aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-09-17 18:34:17 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-09-17 18:34:17 -0300
commitddf0c0a1973cae55437525990dbb3c9b6069b553 (patch)
tree8d7417087f6ee472dc9f183faf31531fff89cc97
parent46d168e957577c4a39417b7cd3ba5e0bc4bacde7 (diff)
parent57a893b54a7364ed919c7e49e81ab245e25b5e16 (diff)
downloadrails-ddf0c0a1973cae55437525990dbb3c9b6069b553.tar.gz
rails-ddf0c0a1973cae55437525990dbb3c9b6069b553.tar.bz2
rails-ddf0c0a1973cae55437525990dbb3c9b6069b553.zip
Merge pull request #16952 from akshay-vishnoi/docs-rails-4point2
[ci skip] ActiveModel CHANGELOG docs fixes
-rw-r--r--activemodel/CHANGELOG.md19
1 files changed, 11 insertions, 8 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md
index c14b0688c7..5588699d9b 100644
--- a/activemodel/CHANGELOG.md
+++ b/activemodel/CHANGELOG.md
@@ -12,18 +12,21 @@
* Deprecate `reset_#{attribute}` in favor of `restore_#{attribute}`.
- These methods may cause confusion with the `reset_changes` that behaves differently
- of them.
+ These methods may cause confusion with the `reset_changes`, which has
+ different behaviour.
+
+ *Rafael Mendonça França*
* Deprecate `ActiveModel::Dirty#reset_changes` in favor of `#clear_changes_information`.
- This method name is causing confusion with the `reset_#{attribute}`
- methods. While `reset_name` set the value of the name attribute for the
- previous value `reset_changes` only discard the changes and previous
- changes.
+ Method's name is causing confusion with the `reset_#{attribute}` methods.
+ While `reset_name` sets the value of the name attribute to previous value
+ `reset_changes` only discards the changes.
+
+ *Rafael Mendonça França*
-* Added `restore_attributes` method to `ActiveModel::Dirty` API to restore all the
- changed values to the previous data.
+* Added `restore_attributes` method to `ActiveModel::Dirty` API which restores
+ the value of changed attributes to previous value.
*Igor G.*