aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorSkye Shaw <skye.shaw@gmail.com>2015-04-24 13:00:56 -0400
committerSkye Shaw <skye.shaw@gmail.com>2015-04-24 13:00:56 -0400
commitc744af7cd3fd41f97c0b732aaf9fe3ac2bb28469 (patch)
treec65cb819e451075ff41fc00d022ae11bdfe2c8bd /railties/lib
parentf9369c0f51e8c404dd12024037a055594bf0ace2 (diff)
downloadrails-c744af7cd3fd41f97c0b732aaf9fe3ac2bb28469.tar.gz
rails-c744af7cd3fd41f97c0b732aaf9fe3ac2bb28469.tar.bz2
rails-c744af7cd3fd41f97c0b732aaf9fe3ac2bb28469.zip
Refer to the constructer argument in docs
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/rack/logger.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/rack/logger.rb b/railties/lib/rails/rack/logger.rb
index 5103c1e2ca..7aaa353b91 100644
--- a/railties/lib/rails/rack/logger.rb
+++ b/railties/lib/rails/rack/logger.rb
@@ -8,7 +8,7 @@ module Rails
module Rack
# Sets log tags, logs the request, calls the app, and flushes the logs.
#
- # Log tags can be an Array containing: methods that the <tt>request</tt> object responds to, a Proc
+ # Log tags (+taggers+) can be an Array containing: methods that the <tt>request</tt> object responds to, a Proc
# that accepts an instance of the <tt>request</tt> object, or something that responds to <tt>to_s</tt>.
class Logger < ActiveSupport::LogSubscriber
def initialize(app, taggers = nil)