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

Add missing # in wrap_parameters RDoc

[ci skip]
This commit is contained in:
Kyle Zhao 2020-05-29 14:51:24 -04:00
parent b7c846afaf
commit bf512f6f4b

View file

@ -189,7 +189,7 @@ module ActionController
#
# wrap_parameters Person
# # wraps parameters by determining the wrapper key from Person class
# (+person+, in this case) and the list of attribute names
# # (+person+, in this case) and the list of attribute names
#
# wrap_parameters include: [:username, :title]
# # wraps only +:username+ and +:title+ attributes from parameters.