Skip to content

Commit

Permalink
Added a space before "do" keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
amatsuda committed Nov 28, 2010
1 parent 04922ba commit 1662aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionpack/lib/action_view/helpers/form_tag_helper.rb
Expand Up @@ -39,7 +39,7 @@ module FormTagHelper
# form_tag('/upload', :multipart => true) # form_tag('/upload', :multipart => true)
# # => <form action="/upload" method="post" enctype="multipart/form-data"> # # => <form action="/upload" method="post" enctype="multipart/form-data">
# #
# <%= form_tag('/posts')do -%> # <%= form_tag('/posts') do -%>
# <div><%= submit_tag 'Save' %></div> # <div><%= submit_tag 'Save' %></div>
# <% end -%> # <% end -%>
# # => <form action="/posts" method="post"><div><input type="submit" name="submit" value="Save" /></div></form> # # => <form action="/posts" method="post"><div><input type="submit" name="submit" value="Save" /></div></form>
Expand Down

0 comments on commit 1662aa1

Please sign in to comment.