diff options
author | Mark Rushakoff <mark.rushakoff@gmail.com> | 2012-04-27 21:33:56 -0700 |
---|---|---|
committer | Mark Rushakoff <mark.rushakoff@gmail.com> | 2012-04-27 21:33:56 -0700 |
commit | c13d36c95fcc0d327dff7af36ae07afaf3ce603c (patch) | |
tree | f5f814ff86e007c8c2419e7c88de7a3b14809651 /actionpack/lib/action_dispatch | |
parent | 43af34c0f6c81d4d93be1bc1e743c202e8244485 (diff) | |
download | rails-c13d36c95fcc0d327dff7af36ae07afaf3ce603c.tar.gz rails-c13d36c95fcc0d327dff7af36ae07afaf3ce603c.tar.bz2 rails-c13d36c95fcc0d327dff7af36ae07afaf3ce603c.zip |
More using <tt>x</tt> instead of +x+ when the latter renders improperly.
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/reloader.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/reloader.rb b/actionpack/lib/action_dispatch/middleware/reloader.rb index a0388e0e13..25ad4ecdd3 100644 --- a/actionpack/lib/action_dispatch/middleware/reloader.rb +++ b/actionpack/lib/action_dispatch/middleware/reloader.rb @@ -20,8 +20,8 @@ module ActionDispatch # By default, ActionDispatch::Reloader is included in the middleware stack # only in the development environment; specifically, when config.cache_classes # is false. Callbacks may be registered even when it is not included in the - # middleware stack, but are executed only when +ActionDispatch::Reloader.prepare!+ - # or +ActionDispatch::Reloader.cleanup!+ are called manually. + # middleware stack, but are executed only when <tt>ActionDispatch::Reloader.prepare!</tt> + # or <tt>ActionDispatch::Reloader.cleanup!</tt> are called manually. # class Reloader include ActiveSupport::Callbacks |