diff options
author | Mikhail Dieterle <MikDiet@gmail.com> | 2017-04-08 14:11:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-08 14:11:36 +0300 |
commit | 6f71e508a1272170dc93a31c5fc677f7f802d9eb (patch) | |
tree | 242ece2f21c706e9ede9f989eed6f4f47e3f22fa /guides | |
parent | 09436fb6d6d188739b40ef120b4344106d81caf9 (diff) | |
download | rails-6f71e508a1272170dc93a31c5fc677f7f802d9eb.tar.gz rails-6f71e508a1272170dc93a31c5fc677f7f802d9eb.tar.bz2 rails-6f71e508a1272170dc93a31c5fc677f7f802d9eb.zip |
[ci skip] Change ++ by markdown quotes
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_model_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_model_basics.md b/guides/source/active_model_basics.md index e26805d22c..b8f076a27b 100644 --- a/guides/source/active_model_basics.md +++ b/guides/source/active_model_basics.md @@ -469,7 +469,7 @@ In order to make this work, the model must have an accessor named `password_dige The `has_secure_password` will add the following validations on the `password` accessor: 1. Password should be present. -2. Password should be equal to its confirmation (provided +password_confirmation+ is passed along). +2. Password should be equal to its confirmation (provided `password_confirmation` is passed along). 3. The maximum length of a password is 72 (required by `bcrypt` on which ActiveModel::SecurePassword depends) #### Examples |