1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Wrap method arguments with parentheses in docs

As per Rails general coding conventions. Related to #18794 [ci skip]
This commit is contained in:
Carlos Antonio da Silva 2015-02-03 07:33:38 -02:00
parent 054e2a3d42
commit f44b437627

View file

@ -26,7 +26,7 @@ module ActiveModel
#
# define_attribute_methods :name
#
# def initialize name = nil
# def initialize(name = nil)
# @name = name
# end
#