@@ -484,7 +484,7 @@ def apply_form_for_options!(record, object, options) # :nodoc:
484
484
# <%= form.text_field :title %>
485
485
# <% end %>
486
486
# # =>
487
- # <form action="/posts" method="post" data-remote="true" >
487
+ # <form action="/posts" method="post">
488
488
# <input type="text" name="title">
489
489
# </form>
490
490
#
@@ -493,7 +493,7 @@ def apply_form_for_options!(record, object, options) # :nodoc:
493
493
# <%= form.text_field :title %>
494
494
# <% end %>
495
495
# # =>
496
- # <form action="/posts" method="post" data-remote="true" >
496
+ # <form action="/posts" method="post">
497
497
# <input type="text" name="post[title]">
498
498
# </form>
499
499
#
@@ -502,7 +502,7 @@ def apply_form_for_options!(record, object, options) # :nodoc:
502
502
# <%= form.text_field :title %>
503
503
# <% end %>
504
504
# # =>
505
- # <form action="/posts" method="post" data-remote="true" >
505
+ # <form action="/posts" method="post">
506
506
# <input type="text" name="post[title]">
507
507
# </form>
508
508
#
@@ -511,7 +511,7 @@ def apply_form_for_options!(record, object, options) # :nodoc:
511
511
# <%= form.text_field :title %>
512
512
# <% end %>
513
513
# # =>
514
- # <form action="/posts/1" method="post" data-remote="true" >
514
+ # <form action="/posts/1" method="post">
515
515
# <input type="hidden" name="_method" value="patch">
516
516
# <input type="text" name="post[title]" value="<the title of the post>">
517
517
# </form>
@@ -522,7 +522,7 @@ def apply_form_for_options!(record, object, options) # :nodoc:
522
522
# <%= form.text_field :but_in_forms_they_can %>
523
523
# <% end %>
524
524
# # =>
525
- # <form action="/cats" method="post" data-remote="true" >
525
+ # <form action="/cats" method="post">
526
526
# <input type="text" name="cat[cats_dont_have_gills]">
527
527
# <input type="text" name="cat[but_in_forms_they_can]">
528
528
# </form>
0 commit comments