diff options
author | José Valim <jose.valim@plataformatec.com.br> | 2012-06-16 04:45:48 -0700 |
---|---|---|
committer | José Valim <jose.valim@plataformatec.com.br> | 2012-06-16 04:45:48 -0700 |
commit | 27846d89ffbd73071e8541f8b251fa4b6d279203 (patch) | |
tree | 0aab9bcf5931f611be36512a98269c7525366669 | |
parent | d28ba0def829f6fb9ecf824c036391058cbb9e66 (diff) | |
parent | c779a47d01ddcdcfde448c91b126fda1c935c9e9 (diff) | |
download | rails-27846d89ffbd73071e8541f8b251fa4b6d279203.tar.gz rails-27846d89ffbd73071e8541f8b251fa4b6d279203.tar.bz2 rails-27846d89ffbd73071e8541f8b251fa4b6d279203.zip |
Merge pull request #6753 from schnittchen/patch-1
Documentation: "asynchronously" is misleading here
-rw-r--r-- | activesupport/lib/active_support/notifications.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/notifications.rb b/activesupport/lib/active_support/notifications.rb index 6735c561d3..e3d8cf48ce 100644 --- a/activesupport/lib/active_support/notifications.rb +++ b/activesupport/lib/active_support/notifications.rb @@ -33,7 +33,7 @@ module ActiveSupport # end # # That code returns right away, you are just subscribing to "render" events. - # The block will be called asynchronously whenever someone instruments "render": + # The block is saved and will be called whenever someone instruments "render": # # ActiveSupport::Notifications.instrument("render", :extra => :information) do # render :text => "Foo" |