diff options
author | Rajinder Yadav <devguy.ca@gmail.com> | 2010-11-14 06:02:16 -0500 |
---|---|---|
committer | Rajinder Yadav <devguy.ca@gmail.com> | 2010-11-14 06:02:16 -0500 |
commit | abf225423cbe11fcb0460a40bd49263694eaef06 (patch) | |
tree | 0eef7fbf5c74c94a30b89668accca7a2d0189caf /railties/guides/source/action_controller_overview.textile | |
parent | f69784289b6efd0eabb674d6467b2cd0c0a4af07 (diff) | |
download | rails-abf225423cbe11fcb0460a40bd49263694eaef06.tar.gz rails-abf225423cbe11fcb0460a40bd49263694eaef06.tar.bz2 rails-abf225423cbe11fcb0460a40bd49263694eaef06.zip |
removed unnecessary indentation
Diffstat (limited to 'railties/guides/source/action_controller_overview.textile')
-rw-r--r-- | railties/guides/source/action_controller_overview.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_controller_overview.textile b/railties/guides/source/action_controller_overview.textile index cabc0c8a7f..b39075f101 100644 --- a/railties/guides/source/action_controller_overview.textile +++ b/railties/guides/source/action_controller_overview.textile @@ -264,7 +264,7 @@ end Note it is also possible to assign a flash message as part of the redirection. <ruby> - redirect_to root_url, :notice => "You have successfully logged out" +redirect_to root_url, :notice => "You have successfully logged out" </ruby> |