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

@ -92,8 +92,8 @@ def initialize # :nodoc:
# * +permit_all_parameters+ - If it's +true+, all the parameters will be
# permitted by default. The default is +false+.
# * +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,
# +false+ otherwise. The values can be:
# permitted are found. The default value is <tt>:log</tt> in test and development environments,
# +false+ otherwise. The values can be:
# * +false+ to take no action.
# * <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.