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

Change double quotes to single quotes in guide

Improve consistency
This commit is contained in:
Timothy Aveni 2014-06-21 21:23:48 -04:00
parent 0e9a705966
commit a4aa95e6af

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 %>