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

Merge pull request #15852 from SyntaxBlitz/master

Change double quotes to single quotes in guide
This commit is contained in:
Rafael Mendonça França 2014-06-23 11:17:15 -03:00
commit 936fd4c1e0

View file

@ -1873,7 +1873,7 @@ Then you make the `app/views/articles/show.html.erb` look like the following:
<%= render @article.comments %>
<h2>Add a comment:</h2>
<%= render "comments/form" %>
<%= render 'comments/form' %>
<%= link_to 'Edit Article', edit_article_path(@article) %> |
<%= link_to 'Back to Articles', articles_path %>