1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fix typo in Active Record Validations guide. [ci skip].

Closes #11498.
This commit is contained in:
Yves Senn 2013-07-19 07:44:53 +02:00
parent fa1e101d54
commit 20281b7f39

View file

@ -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