1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix example in flash middleware

This commit is contained in:
Alexey Vakhov 2012-04-17 15:01:41 +04:00
parent 256e317c39
commit 86b30c4347

View file

@ -17,7 +17,7 @@ module ActionDispatch
# def create
# # save post
# flash[:notice] = "Post successfully created"
# redirect_to posts_path(@post)
# redirect_to @post
# end
#
# def show