aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-09-01 22:19:37 -0600
committerSean Griffin <sean@seantheprogrammer.com>2015-09-01 22:19:37 -0600
commit2744efdc8b2efa89251ff5219809baa7b8cf8a16 (patch)
treed81c3ca7255dfb79803caddaa91a70802a795d3d /guides/source/action_controller_overview.md
parentdc5cf37d7379e297196dbe542b958b1114ef840e (diff)
parentcf82b2e034cb99afde9c19babbb96276d3804c5b (diff)
downloadrails-2744efdc8b2efa89251ff5219809baa7b8cf8a16.tar.gz
rails-2744efdc8b2efa89251ff5219809baa7b8cf8a16.tar.bz2
rails-2744efdc8b2efa89251ff5219809baa7b8cf8a16.zip
Merge pull request #21451 from kishore-mohan/typo-helper-description
Typo on helper description and action_controller_overview
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index b4ca0df0de..19bdea2b8a 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -1114,7 +1114,7 @@ Rescue
Most likely your application is going to contain bugs or otherwise throw an exception that needs to be handled. For example, if the user follows a link to a resource that no longer exists in the database, Active Record will throw the `ActiveRecord::RecordNotFound` exception.
-Rails' default exception handling displays a "500 Server Error" message for all exceptions. If the request was made locally, a nice traceback and some added information gets displayed so you can figure out what went wrong and deal with it. If the request was remote Rails will just display a simple "500 Server Error" message to the user, or a "404 Not Found" if there was a routing error or a record could not be found. Sometimes you might want to customize how these errors are caught and how they're displayed to the user. There are several levels of exception handling available in a Rails application:
+Rails default exception handling displays a "500 Server Error" message for all exceptions. If the request was made locally, a nice traceback and some added information gets displayed so you can figure out what went wrong and deal with it. If the request was remote Rails will just display a simple "500 Server Error" message to the user, or a "404 Not Found" if there was a routing error or a record could not be found. Sometimes you might want to customize how these errors are caught and how they're displayed to the user. There are several levels of exception handling available in a Rails application:
### The Default 500 and 404 Templates