diff options
author | Matthew Draper <matthew@trebex.net> | 2015-12-28 16:47:06 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2015-12-28 16:47:06 +1030 |
commit | 6cce589c5e43f9a713f29faa2926ee7a70292dd5 (patch) | |
tree | aee3a27e2f09c14a78d5900a0d7558a76fbf322d | |
parent | 46bbdf58b50a34986d671091a0a7188b66492cd5 (diff) | |
parent | b31eb5d43e55171b26bb9edd694bd74686bcbaeb (diff) | |
download | rails-6cce589c5e43f9a713f29faa2926ee7a70292dd5.tar.gz rails-6cce589c5e43f9a713f29faa2926ee7a70292dd5.tar.bz2 rails-6cce589c5e43f9a713f29faa2926ee7a70292dd5.zip |
Merge pull request #22809 from prathamesh-sonpatki/fix-broadcast-typo
Removed extra "the" in the documentation of `broadcast_message` [ci skip]
-rw-r--r-- | activesupport/lib/active_support/logger.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/logger.rb b/activesupport/lib/active_support/logger.rb index cd002b3544..65049f8498 100644 --- a/activesupport/lib/active_support/logger.rb +++ b/activesupport/lib/active_support/logger.rb @@ -5,7 +5,7 @@ module ActiveSupport class Logger < ::Logger include LoggerSilence - # If +true+, will broadcast all messages sent to this logger to the any + # If +true+, will broadcast all messages sent to this logger to any # logger linked to this one via +broadcast+. # # If +false+, the logger will still forward calls to +close+, +progname=+, |