aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Butler <dwbutler@ucla.edu>2013-05-20 23:53:05 -0700
committerDavid Butler <dwbutler@ucla.edu>2013-05-20 23:53:05 -0700
commite93e255161ee7836b6043a9ba286b6f23d0f9d8b (patch)
tree409bf122267c67192e3a2ddd400ca636617a0a74
parent928a58b2b86c4de966654743ea7d693efb8cd98f (diff)
downloadrails-e93e255161ee7836b6043a9ba286b6f23d0f9d8b.tar.gz
rails-e93e255161ee7836b6043a9ba286b6f23d0f9d8b.tar.bz2
rails-e93e255161ee7836b6043a9ba286b6f23d0f9d8b.zip
Documentation: Notifications queue does not run in a thread.
-rw-r--r--activesupport/lib/active_support/notifications.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/notifications.rb b/activesupport/lib/active_support/notifications.rb
index c45358bba9..b32aa75e59 100644
--- a/activesupport/lib/active_support/notifications.rb
+++ b/activesupport/lib/active_support/notifications.rb
@@ -143,8 +143,8 @@ module ActiveSupport
#
# == Default Queue
#
- # Notifications ships with a queue implementation that consumes and publish events
- # to log subscribers in a thread. You can use any queue implementation you want.
+ # Notifications ships with a queue implementation that consumes and publishes events
+ # to all log subscribers. You can use any queue implementation you want.
#
module Notifications
class << self