diff options
author | Eileen M. Uchitelle <eileencodes@gmail.com> | 2015-09-10 20:48:30 -0400 |
---|---|---|
committer | Eileen M. Uchitelle <eileencodes@gmail.com> | 2015-09-10 20:48:30 -0400 |
commit | bbf0d35bf6148752911c1da4b7449450faea8755 (patch) | |
tree | 6b7e5c19c931b47af597664e9a0530d5e374ba67 /guides/source | |
parent | 9f4f08cdc1fb43f9b14d49f32db9a179abc77f6c (diff) | |
parent | 0ab07181c9d69e8cf560ad55b12820558c8f5eab (diff) | |
download | rails-bbf0d35bf6148752911c1da4b7449450faea8755.tar.gz rails-bbf0d35bf6148752911c1da4b7449450faea8755.tar.bz2 rails-bbf0d35bf6148752911c1da4b7449450faea8755.zip |
Merge pull request #21585 from lachlanjc/patch-1
Remove RHTML reference in Action Controller docs
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 19bdea2b8a..9ab2841619 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -1118,7 +1118,7 @@ Rails default exception handling displays a "500 Server Error" message for all e ### The Default 500 and 404 Templates -By default a production application will render either a 404 or a 500 error message. These messages are contained in static HTML files in the `public` folder, in `404.html` and `500.html` respectively. You can customize these files to add some extra information and layout, but remember that they are static; i.e. you can't use RHTML or layouts in them, just plain HTML. +By default a production application will render either a 404 or a 500 error message. These messages are contained in static HTML files in the `public` folder, in `404.html` and `500.html` respectively. You can customize these files to add some extra information and style, but remember that they are static HTML; i.e. you can't use ERB, SCSS, CoffeeScript, or layouts for them. ### `rescue_from` |