diff options
author | claudiob <claudiob@gmail.com> | 2014-12-17 16:34:05 -0800 |
---|---|---|
committer | claudiob <claudiob@gmail.com> | 2014-12-17 16:44:51 -0800 |
commit | 23c8f6918d4e6b9a823aa7a91377c6e3b5d60e13 (patch) | |
tree | ee02dd33238715269f8e0139d611a88df4d520df /activesupport/lib/active_support/notifications | |
parent | 78789b7acd566562b58e73a7d4f1a11163370f32 (diff) | |
download | rails-23c8f6918d4e6b9a823aa7a91377c6e3b5d60e13.tar.gz rails-23c8f6918d4e6b9a823aa7a91377c6e3b5d60e13.tar.bz2 rails-23c8f6918d4e6b9a823aa7a91377c6e3b5d60e13.zip |
Replace `#=>` with `# =>` [ci skip]
@rafaelfranca suggested in f7c7bcd9 that code examples should display
the result after `# =>` and not after `#=>`.
This commit replaces *all* the occurrences of `#=>` in the code documentation
(mostly added by me :sob:) with the suggested `# =>`.
Diffstat (limited to 'activesupport/lib/active_support/notifications')
-rw-r--r-- | activesupport/lib/active_support/notifications/instrumenter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/notifications/instrumenter.rb b/activesupport/lib/active_support/notifications/instrumenter.rb index 64cb99d2e2..075ddc2382 100644 --- a/activesupport/lib/active_support/notifications/instrumenter.rb +++ b/activesupport/lib/active_support/notifications/instrumenter.rb @@ -68,7 +68,7 @@ module ActiveSupport # sleep 1 # end # - # @event.duration #=> 1000.138 + # @event.duration # => 1000.138 def duration @duration ||= 1000.0 * (self.end - time) end |