Skip to content

Commit f4c5e6d

Browse files
Autolink FormHelper#form_for [ci-skip]
1 parent 5e7857d commit f4c5e6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actionview/lib/action_view/helpers/form_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Helpers # :nodoc:
3131
# of the resource should show the current values of those attributes.
3232
#
3333
# In \Rails, this is usually achieved by creating the form using either
34-
# #form_with or +form_for+ and a number of related helper methods. These
34+
# #form_with or #form_for and a number of related helper methods. These
3535
# methods generate an appropriate <tt>form</tt> tag and yield a form
3636
# builder object that knows the model the form is about. Input fields are
3737
# created by calling methods defined on the form builder, which means they
@@ -42,7 +42,7 @@ module Helpers # :nodoc:
4242
#
4343
# For example, to create a new person you typically set up a new instance of
4444
# +Person+ in the <tt>PeopleController#new</tt> action, <tt>@person</tt>, and
45-
# in the view template pass that object to #form_with or +form_for+:
45+
# in the view template pass that object to #form_with or #form_for:
4646
#
4747
# <%= form_with model: @person do |f| %>
4848
# <%= f.label :first_name %>:

0 commit comments

Comments
 (0)