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

Fix nested bullet list indentation [ci skip]

This patch fixes the indentation of a nested bullet list in the
documentation of `ActionController::Parameters` that appeared as inside
a box in api.rubyonrails.org documentation website.
This commit is contained in:
Alberto Almagro 2022-01-18 23:25:22 +01:00
parent 2197814074
commit f906af86b9

View file

@ -92,8 +92,8 @@ module ActionController
# * +permit_all_parameters+ - If it's +true+, all the parameters will be # * +permit_all_parameters+ - If it's +true+, all the parameters will be
# permitted by default. The default is +false+. # permitted by default. The default is +false+.
# * +action_on_unpermitted_parameters+ - Controls behavior when parameters that are not explicitly # * +action_on_unpermitted_parameters+ - Controls behavior when parameters that are not explicitly
# permitted are found. The default value is <tt>:log</tt> in test and development environments, # permitted are found. The default value is <tt>:log</tt> in test and development environments,
# +false+ otherwise. The values can be: # +false+ otherwise. The values can be:
# * +false+ to take no action. # * +false+ to take no action.
# * <tt>:log</tt> to emit an <tt>ActiveSupport::Notifications.instrument</tt> event on the # * <tt>:log</tt> to emit an <tt>ActiveSupport::Notifications.instrument</tt> event on the
# <tt>unpermitted_parameters.action_controller</tt> topic and log at the DEBUG level. # <tt>unpermitted_parameters.action_controller</tt> topic and log at the DEBUG level.