diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2015-05-29 22:29:16 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2015-05-29 22:29:16 +0200 |
commit | f06605df60353189a4c7e5aba3b5592fc0da4c27 (patch) | |
tree | 93e44b1b71d202cac9137611a277532fe1a4f6d8 /activemodel/lib/active_model/errors.rb | |
parent | b42d770b3bcbfbfe698be964f609907979422463 (diff) | |
parent | 3833d4529f24aee96dfa607d6f61b95e806965eb (diff) | |
download | rails-f06605df60353189a4c7e5aba3b5592fc0da4c27.tar.gz rails-f06605df60353189a4c7e5aba3b5592fc0da4c27.tar.bz2 rails-f06605df60353189a4c7e5aba3b5592fc0da4c27.zip |
Merge pull request #20370 from manishspuri/master
formatting changes
Diffstat (limited to 'activemodel/lib/active_model/errors.rb')
-rw-r--r-- | activemodel/lib/active_model/errors.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activemodel/lib/active_model/errors.rb b/activemodel/lib/active_model/errors.rb index 287a2559d2..29e0c977ce 100644 --- a/activemodel/lib/active_model/errors.rb +++ b/activemodel/lib/active_model/errors.rb @@ -43,11 +43,11 @@ module ActiveModel # end # end # - # The last three methods are required in your object for Errors to be + # The last three methods are required in your object for +Errors+ to be # able to generate error messages correctly and also handle multiple - # languages. Of course, if you extend your object with ActiveModel::Translation + # languages. Of course, if you extend your object with <tt>ActiveModel::Translation</tt> # you will not need to implement the last two. Likewise, using - # ActiveModel::Validations will handle the validation related methods + # <tt>ActiveModel::Validations</tt> will handle the validation related methods # for you. # # The above allows you to do: |