aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.textile
diff options
context:
space:
mode:
authorMark Rushakoff <mark.rushakoff@gmail.com>2012-05-14 22:37:34 -0700
committerMark Rushakoff <mark.rushakoff@gmail.com>2012-05-14 22:37:34 -0700
commit632f279ec063a8c1e0168e82ce5c5cbd6ae1db4e (patch)
treebb37874b20422e2a4a23850874f0c1c7c48fb17f /guides/source/configuring.textile
parentb83f4c74531373421852d83babb27775d14dd9b3 (diff)
downloadrails-632f279ec063a8c1e0168e82ce5c5cbd6ae1db4e.tar.gz
rails-632f279ec063a8c1e0168e82ce5c5cbd6ae1db4e.tar.bz2
rails-632f279ec063a8c1e0168e82ce5c5cbd6ae1db4e.zip
code-format italicized 'production' env [ci skip]
Diffstat (limited to 'guides/source/configuring.textile')
-rw-r--r--guides/source/configuring.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.textile b/guides/source/configuring.textile
index b2c9300034..f114075cae 100644
--- a/guides/source/configuring.textile
+++ b/guides/source/configuring.textile
@@ -597,7 +597,7 @@ Rails has 5 initialization events which can be hooked into (listed in the order
* +to_prepare+: Run after the initializers are run for all Railties (including the application itself), but before eager loading and the middleware stack is built. More importantly, will run upon every request in +development+, but only once (during boot-up) in +production+ and +test+.
-* +before_eager_load+: This is run directly before eager loading occurs, which is the default behaviour for the _production_ environment and not for the +development+ environment.
+* +before_eager_load+: This is run directly before eager loading occurs, which is the default behaviour for the +production+ environment and not for the +development+ environment.
* +after_initialize+: Run directly after the initialization of the application, but before the application initializers are run.