aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorFrancis Go <francis.go@gmail.com>2013-09-27 16:55:06 +1000
committerFrancis Go <francis.go@gmail.com>2013-09-27 16:55:06 +1000
commited20b56becc02753c95e0cade9a907a5c67c2195 (patch)
treeccbf3ea75005f194a6c7d47864ed3d2fa4d78eee /guides/source/getting_started.md
parent7045a5bf37094a05e8cfe9f584e3965de3f63901 (diff)
downloadrails-ed20b56becc02753c95e0cade9a907a5c67c2195.tar.gz
rails-ed20b56becc02753c95e0cade9a907a5c67c2195.tar.bz2
rails-ed20b56becc02753c95e0cade9a907a5c67c2195.zip
Add new line after create action on CommentsController code example
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index e7556111f8..400615878b 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -1816,6 +1816,7 @@ class CommentsController < ApplicationController
@post = Post.find(params[:post_id])
...
end
+
# snipped for brevity
```