diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-07-19 07:44:53 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-07-19 07:44:53 +0200 |
commit | 20281b7f39fda474684f84ffa6a214ef1e93f3d1 (patch) | |
tree | a6435daebc4a21fa2f0fee0df0d422838364fff8 /guides/source | |
parent | fa1e101d5469729c0b21c234bde85f731d4ce6e4 (diff) | |
download | rails-20281b7f39fda474684f84ffa6a214ef1e93f3d1.tar.gz rails-20281b7f39fda474684f84ffa6a214ef1e93f3d1.tar.bz2 rails-20281b7f39fda474684f84ffa6a214ef1e93f3d1.zip |
fix typo in Active Record Validations guide. [ci skip].
Closes #11498.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_validations.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_validations.md b/guides/source/active_record_validations.md index 3bfc600e7c..d95b587e78 100644 --- a/guides/source/active_record_validations.md +++ b/guides/source/active_record_validations.md @@ -121,7 +121,7 @@ database only if the object is valid: 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` just return the objects. +`create` just returns the object. ### Skipping Validations |