From 20281b7f39fda474684f84ffa6a214ef1e93f3d1 Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Fri, 19 Jul 2013 07:44:53 +0200 Subject: [PATCH] fix typo in Active Record Validations guide. [ci skip]. Closes #11498. --- guides/source/active_record_validations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- GitLab