diff options
author | Juanjo Bazán <jjbazan@gmail.com> | 2013-01-08 23:49:29 +0100 |
---|---|---|
committer | Juanjo Bazán <jjbazan@gmail.com> | 2013-01-08 23:49:29 +0100 |
commit | 5fb84c6828cea031d829969fed1fdf52d1e94ac4 (patch) | |
tree | c7a5a82574974a87d32bac39eea05e3fb70e62a2 /guides/source | |
parent | f049016cd348627bf8db0d72382d7580bf802a79 (diff) | |
download | rails-5fb84c6828cea031d829969fed1fdf52d1e94ac4.tar.gz rails-5fb84c6828cea031d829969fed1fdf52d1e94ac4.tar.bz2 rails-5fb84c6828cea031d829969fed1fdf52d1e94ac4.zip |
remove 'update' duplications
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_callbacks.md | 1 | ||||
-rw-r--r-- | guides/source/active_record_validations.md | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/guides/source/active_record_callbacks.md b/guides/source/active_record_callbacks.md index 3747b00b82..516457bcd3 100644 --- a/guides/source/active_record_callbacks.md +++ b/guides/source/active_record_callbacks.md @@ -157,7 +157,6 @@ The following methods trigger callbacks: * `save!` * `save(validate: false)` * `toggle!` -* `update` * `update_attribute` * `update` * `update!` diff --git a/guides/source/active_record_validations.md b/guides/source/active_record_validations.md index a911d6b941..eaa47d4ebf 100644 --- a/guides/source/active_record_validations.md +++ b/guides/source/active_record_validations.md @@ -117,7 +117,6 @@ database only if the object is valid: * `save` * `save!` * `update` -* `update` * `update!` The bang versions (e.g. `save!`) raise an exception if the record is invalid. |