aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorTimothy Aveni <timothy@tacosareawesome.com>2014-06-21 21:23:48 -0400
committerTimothy Aveni <timothy@tacosareawesome.com>2014-06-21 21:23:48 -0400
commita4aa95e6af4daba4aaaa9f09abc9007ecc54d1a5 (patch)
tree3e8ba2175b918687c51e5e7fcd6b9734221bef8d /guides
parent0e9a7059664eb9dee8e3afae60d26ff858d0d84b (diff)
downloadrails-a4aa95e6af4daba4aaaa9f09abc9007ecc54d1a5.tar.gz
rails-a4aa95e6af4daba4aaaa9f09abc9007ecc54d1a5.tar.bz2
rails-a4aa95e6af4daba4aaaa9f09abc9007ecc54d1a5.zip
Change double quotes to single quotes in guide
Improve consistency
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index ea6c8cdd55..4a0600d02a 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -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 %>