diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2013-02-10 19:21:59 -0800 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2013-02-10 19:21:59 -0800 |
commit | 17a69c7ee113aef7e5882d2f90afcc9ac9589e4a (patch) | |
tree | 847d063bd9c52fe66a160fdd4a801f8a248f3ed9 /guides/source | |
parent | 3900a160b6ccdaa27a0237e235d87fff4b54c42f (diff) | |
parent | 20985257a1866e29b7251a218aca275d886939df (diff) | |
download | rails-17a69c7ee113aef7e5882d2f90afcc9ac9589e4a.tar.gz rails-17a69c7ee113aef7e5882d2f90afcc9ac9589e4a.tar.bz2 rails-17a69c7ee113aef7e5882d2f90afcc9ac9589e4a.zip |
Merge pull request #9245 from vasconcelloslf/fix_guide_typo
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 ``` |