diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-08-27 11:34:47 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-08-27 11:34:47 +0200 |
commit | bf44481524c7d93762543b1cfafcaf49b3a37025 (patch) | |
tree | b9fb2f73a4a4207d02408bbe4c2ad563d08a0bc1 /activemodel/lib/active_model/validations | |
parent | 8148ae25ce692038027f04cf825110fe588f838d (diff) | |
parent | e57ad6dc03efd269d289fcd447aafcf6e3058904 (diff) | |
download | rails-bf44481524c7d93762543b1cfafcaf49b3a37025.tar.gz rails-bf44481524c7d93762543b1cfafcaf49b3a37025.tar.bz2 rails-bf44481524c7d93762543b1cfafcaf49b3a37025.zip |
Merge pull request #16661 from edogawaconan/doc-fix
Update documentation to match change in #5942 [ci skip]
Diffstat (limited to 'activemodel/lib/active_model/validations')
-rw-r--r-- | activemodel/lib/active_model/validations/confirmation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validations/confirmation.rb b/activemodel/lib/active_model/validations/confirmation.rb index a51523912f..1b11c28087 100644 --- a/activemodel/lib/active_model/validations/confirmation.rb +++ b/activemodel/lib/active_model/validations/confirmation.rb @@ -54,7 +54,7 @@ module ActiveModel # # Configuration options: # * <tt>:message</tt> - A custom error message (default is: "doesn't match - # confirmation"). + # <tt>%{translated_attribute_name}</tt>"). # # There is also a list of default options supported by every validator: # +:if+, +:unless+, +:on+, +:allow_nil+, +:allow_blank+, and +:strict+. |