aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorYuki Nishijima <mail@yukinishijima.net>2014-06-19 18:11:28 -0700
committerYuki Nishijima <mail@yukinishijima.net>2014-06-19 18:33:28 -0700
commitd7301936be353d3f05bf958cb3671308f9a84851 (patch)
treec485734178dfe4deaa6783a2d43d42f8a763e4d1 /guides/source
parent43bdd728a016aed7521b99e498566bc6cbdd2368 (diff)
downloadrails-d7301936be353d3f05bf958cb3671308f9a84851.tar.gz
rails-d7301936be353d3f05bf958cb3671308f9a84851.tar.bz2
rails-d7301936be353d3f05bf958cb3671308f9a84851.zip
A warning line should look like a warning section
[ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/action_controller_overview.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 57097ab146..1fe59ea36b 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -1219,7 +1219,9 @@ Create the controller and views.
error.html.erb
```
-Do not forget to set the correct status code on the controller as shown before. You should avoid using the database or any complex operations because the user is already on the error page. Generating another error while on an error page could cause issues.
+Do not forget to set the correct status code on the controller as shown before.
+
+WARNING: You should avoid using the database or any complex operations because the user is already on the error page. Generating another error while on an error page could cause issues.
Force HTTPS protocol
--------------------