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
1 changed files with 1 additions and 1 deletions

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