diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2015-02-03 07:33:38 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2015-02-03 07:35:11 -0200 |
commit | f44b437627f90d4706d7f3b1c00b3e204e44c16e (patch) | |
tree | 98a58ba33adb1bddeee08df47415b81eed256926 /activemodel | |
parent | 054e2a3d4220fcdf91170b5b45f16da36e35c5ce (diff) | |
download | rails-f44b437627f90d4706d7f3b1c00b3e204e44c16e.tar.gz rails-f44b437627f90d4706d7f3b1c00b3e204e44c16e.tar.bz2 rails-f44b437627f90d4706d7f3b1c00b3e204e44c16e.zip |
Wrap method arguments with parentheses in docs
As per Rails general coding conventions. Related to #18794 [ci skip]
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/dirty.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/dirty.rb b/activemodel/lib/active_model/dirty.rb index f5147d466e..977cccf5d0 100644 --- a/activemodel/lib/active_model/dirty.rb +++ b/activemodel/lib/active_model/dirty.rb @@ -26,7 +26,7 @@ module ActiveModel # # define_attribute_methods :name # - # def initialize name = nil + # def initialize(name = nil) # @name = name # end # |