diff options
author | Luis Vasconcellos <vasconcelloslf@gmail.com> | 2013-02-11 00:59:47 -0200 |
---|---|---|
committer | Luis Vasconcellos <vasconcelloslf@gmail.com> | 2013-02-11 00:59:47 -0200 |
commit | 20985257a1866e29b7251a218aca275d886939df (patch) | |
tree | 847d063bd9c52fe66a160fdd4a801f8a248f3ed9 /guides/source | |
parent | 3900a160b6ccdaa27a0237e235d87fff4b54c42f (diff) | |
download | rails-20985257a1866e29b7251a218aca275d886939df.tar.gz rails-20985257a1866e29b7251a218aca275d886939df.tar.bz2 rails-20985257a1866e29b7251a218aca275d886939df.zip |
fix a typo on the engine guide
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/engines.md | 2 |
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 ``` |