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

Remove extraneous whitespace

This commit is contained in:
Robin Daugherty 2021-02-08 10:36:19 -05:00 committed by GitHub
parent 2cb2374594
commit 51df35003c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -606,9 +606,9 @@ module ActionView
# unnecessary unless you support browsers without JavaScript.
# * <tt>:local</tt> - Whether to use standard HTTP form submission.
# When set to <tt>true</tt>, the form is submitted via standard HTTP.
# When set to <tt>false</tt>, the form is submitted as a "remote form", which
# is handled by Rails UJS as an XHR. When unspecified, the behavior is derived
# from <tt>config.action_view.form_with_generates_remote_forms</tt> where the
# When set to <tt>false</tt>, the form is submitted as a "remote form", which
# is handled by Rails UJS as an XHR. When unspecified, the behavior is derived
# from <tt>config.action_view.form_with_generates_remote_forms</tt> where the
# config's value is actually the inverse of what <tt>local</tt>'s value would be.
# As of Rails 6.1, that configuration option defaults to <tt>false</tt>
# (which has the equivalent effect of passing <tt>local: true</tt>).