diff options
author | Francis Go <francis.go@gmail.com> | 2013-09-27 16:55:06 +1000 |
---|---|---|
committer | Francis Go <francis.go@gmail.com> | 2013-09-27 16:55:06 +1000 |
commit | ed20b56becc02753c95e0cade9a907a5c67c2195 (patch) | |
tree | ccbf3ea75005f194a6c7d47864ed3d2fa4d78eee /guides | |
parent | 7045a5bf37094a05e8cfe9f584e3965de3f63901 (diff) | |
download | rails-ed20b56becc02753c95e0cade9a907a5c67c2195.tar.gz rails-ed20b56becc02753c95e0cade9a907a5c67c2195.tar.bz2 rails-ed20b56becc02753c95e0cade9a907a5c67c2195.zip |
Add new line after create action on CommentsController code example
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 1 |
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 ``` |