diff options
author | Francis Go <francis.go@gmail.com> | 2013-10-10 00:12:57 +1100 |
---|---|---|
committer | Francis Go <francis.go@gmail.com> | 2013-10-10 00:12:57 +1100 |
commit | a46138c98e7e8779eb2fa86a34ad91d36b82e97e (patch) | |
tree | cc3577748bcb24a2c79a9ac48e52f05eb0d64ee7 /guides/source | |
parent | 7c6f8f8fd6be19663d02ea418142a346adf73bbd (diff) | |
download | rails-a46138c98e7e8779eb2fa86a34ad91d36b82e97e.tar.gz rails-a46138c98e7e8779eb2fa86a34ad91d36b82e97e.tar.bz2 rails-a46138c98e7e8779eb2fa86a34ad91d36b82e97e.zip |
[Validations Guide] Add full stop to the end of sentence [ci skip]
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 0b2f0a47fa..339612ebc5 100644 --- a/guides/source/active_record_validations.md +++ b/guides/source/active_record_validations.md @@ -783,7 +783,7 @@ end Person.new.valid? # => ActiveModel::StrictValidationFailed: Name can't be blank ``` -There is also an ability to pass custom exception to `:strict` option +There is also an ability to pass custom exception to `:strict` option. ```ruby class Person < ActiveRecord::Base |