diff options
author | T.J. Schuck <tj@tjschuck.com> | 2017-05-26 18:33:38 -0400 |
---|---|---|
committer | T.J. Schuck <tj@tjschuck.com> | 2017-05-26 18:33:38 -0400 |
commit | f4f6c512b9bee6ebf3fc27c2d793e715cabb630b (patch) | |
tree | 8d6bcd0cd7048f9c94df439f108344c198906586 | |
parent | b0dc26f57f5fec4790c78a49cede1557561ca724 (diff) | |
download | rails-f4f6c512b9bee6ebf3fc27c2d793e715cabb630b.tar.gz rails-f4f6c512b9bee6ebf3fc27c2d793e715cabb630b.tar.bz2 rails-f4f6c512b9bee6ebf3fc27c2d793e715cabb630b.zip |
Fix broken RDoc formatting
[ci skip]
-rw-r--r-- | activemodel/lib/active_model/validator.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/validator.rb b/activemodel/lib/active_model/validator.rb index 1a4d13f2d0..6c11981e1d 100644 --- a/activemodel/lib/active_model/validator.rb +++ b/activemodel/lib/active_model/validator.rb @@ -82,7 +82,7 @@ module ActiveModel # end # # It can be useful to access the class that is using that validator when there are prerequisites such - # as an +attr_accessor+ being present. This class is accessible via +options[:class]+ in the constructor. + # as an +attr_accessor+ being present. This class is accessible via <tt>options[:class]</tt> in the constructor. # To setup your validator override the constructor. # # class MyValidator < ActiveModel::Validator |