aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/log_subscriber.rb
diff options
context:
space:
mode:
authorJosep M. Bach <josep.m.bach@gmail.com>2010-08-14 17:52:52 +0200
committerXavier Noria <fxn@hashref.com>2010-08-15 02:22:38 +0200
commit9f9a02af86dee5372aae2bd84a5220245bee8706 (patch)
treed3e0d6291d43a15ca9f062f8737f6751921bf4e4 /activesupport/lib/active_support/log_subscriber.rb
parente8ef58a697c4af99a7db44267cf6d975fb5d6091 (diff)
downloadrails-9f9a02af86dee5372aae2bd84a5220245bee8706.tar.gz
rails-9f9a02af86dee5372aae2bd84a5220245bee8706.tar.bz2
rails-9f9a02af86dee5372aae2bd84a5220245bee8706.zip
Whitespace and example identation
Diffstat (limited to 'activesupport/lib/active_support/log_subscriber.rb')
-rw-r--r--activesupport/lib/active_support/log_subscriber.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/log_subscriber.rb b/activesupport/lib/active_support/log_subscriber.rb
index 63c0470d3f..49f7513193 100644
--- a/activesupport/lib/active_support/log_subscriber.rb
+++ b/activesupport/lib/active_support/log_subscriber.rb
@@ -4,7 +4,7 @@ require 'active_support/core_ext/class/attribute'
module ActiveSupport
# ActiveSupport::LogSubscriber is an object set to consume ActiveSupport::Notifications
# with solely purpose of logging. The log subscriber dispatches notifications to a
- # regirested object based on its given namespace.
+ # registered object based on its given namespace.
#
# An example would be Active Record log subscriber responsible for logging queries:
#
@@ -16,7 +16,7 @@ module ActiveSupport
# end
# end
#
- # And it's finally registed as:
+ # And it's finally registered as:
#
# ActiveRecord::LogSubscriber.attach_to :active_record
#