diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2013-06-26 22:57:34 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2013-06-26 22:57:34 +0530 |
commit | 317aaa05883c92165cfb8204634b9fd9b976a97b (patch) | |
tree | af4186590fb1237499f79f0a0102f4d4dccc7a0c /guides/source/active_record_validations.md | |
parent | 342de058c44f6ba93c1cfeeedfc4768ea5325a3a (diff) | |
parent | 73b13f7dc908e419a404add8a331436fe5d67708 (diff) | |
download | rails-317aaa05883c92165cfb8204634b9fd9b976a97b.tar.gz rails-317aaa05883c92165cfb8204634b9fd9b976a97b.tar.bz2 rails-317aaa05883c92165cfb8204634b9fd9b976a97b.zip |
Merge branch 'master' of github.com:lifo/docrails
Conflicts:
guides/source/layout.html.erb
Diffstat (limited to 'guides/source/active_record_validations.md')
-rw-r--r-- | guides/source/active_record_validations.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_validations.md b/guides/source/active_record_validations.md index 37790c62b1..3bfc600e7c 100644 --- a/guides/source/active_record_validations.md +++ b/guides/source/active_record_validations.md @@ -120,8 +120,8 @@ database only if the object is valid: * `update!` The bang versions (e.g. `save!`) raise an exception if the record is invalid. -The non-bang versions don't: `save` and `update` return `false`, -`create` and `update` just return the objects. +The non-bang versions don't, `save` and `update` return `false`, +`create` just return the objects. ### Skipping Validations |