aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/tagged_logging.rb
diff options
context:
space:
mode:
authorSushruth Sivaramakrishnan <sivsushruth@gmail.com>2015-03-05 11:32:51 +0530
committerSushruth Sivaramakrishnan <sivsushruth@gmail.com>2015-03-05 11:32:51 +0530
commit8a5475cb5ffdba9b95d7ae1d2d323540522fc9d6 (patch)
tree4af2350cddab10fe50fa7696239d67a30f9eae3d /activesupport/lib/active_support/tagged_logging.rb
parent929552edbae70e955b9b1c9cae273567084f6bf0 (diff)
downloadrails-8a5475cb5ffdba9b95d7ae1d2d323540522fc9d6.tar.gz
rails-8a5475cb5ffdba9b95d7ae1d2d323540522fc9d6.tar.bz2
rails-8a5475cb5ffdba9b95d7ae1d2d323540522fc9d6.zip
Doc fix [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/tagged_logging.rb')
-rw-r--r--activesupport/lib/active_support/tagged_logging.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/tagged_logging.rb b/activesupport/lib/active_support/tagged_logging.rb
index 9086a959aa..bcd7bf74c0 100644
--- a/activesupport/lib/active_support/tagged_logging.rb
+++ b/activesupport/lib/active_support/tagged_logging.rb
@@ -43,7 +43,7 @@ module ActiveSupport
end
def current_tags
- # We use our object ID here to void conflicting with other instances
+ # We use our object ID here to avoid conflicting with other instances
thread_key = @thread_key ||= "activesupport_tagged_logging_tags:#{object_id}".freeze
Thread.current[thread_key] ||= []
end