aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Vasconcellos <vasconcelloslf@gmail.com>2013-02-11 00:59:47 -0200
committerLuis Vasconcellos <vasconcelloslf@gmail.com>2013-02-11 00:59:47 -0200
commit20985257a1866e29b7251a218aca275d886939df (patch)
tree847d063bd9c52fe66a160fdd4a801f8a248f3ed9
parent3900a160b6ccdaa27a0237e235d87fff4b54c42f (diff)
downloadrails-20985257a1866e29b7251a218aca275d886939df.tar.gz
rails-20985257a1866e29b7251a218aca275d886939df.tar.bz2
rails-20985257a1866e29b7251a218aca275d886939df.zip
fix a typo on the engine guide
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index 58c6870d4a..8062b9c4ea 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -395,7 +395,7 @@ def create
@post = Post.find(params[:post_id])
@comment = @post.comments.create(params[:comment])
flash[:notice] = "Comment has been created!"
- redirect_to post_path
+ redirect_to posts_path
end
```