Merge pull request #17183 from prathamesh-sonpatki/fix-typo-in-am-guide

Fix typo in Active Model guide
This commit is contained in:
Abdelkader Boudih 2014-10-05 14:01:43 +01:00
commit 85c3d5b230
1 changed files with 2 additions and 2 deletions

View File

@ -266,7 +266,7 @@ end
When including `ActiveModel::Model` you get some features like:
- model name instrospection
- model name introspection
- conversions
- translations
- validations
@ -511,7 +511,7 @@ features out of the box.
`ActiveModel::SecurePassword` provides a way to securely store any
password in an encrypted form. On including this module, a
`has_secure_password` class method is provided which defines
`has_secure_password` class method is provided which defines
an accessor named `password` with certain validations on it.
#### Requirements