diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-07-26 23:39:29 +0300 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-07-26 23:40:30 +0300 |
commit | 1933fbaecf5efa982c4214fed51d88d120ffe236 (patch) | |
tree | 71648adae4fcecffecdb35dcf143120c8984d482 /activesupport | |
parent | 09ec075f1ee52f6bb2be83df1336e6d4924b3e9c (diff) | |
download | rails-1933fbaecf5efa982c4214fed51d88d120ffe236.tar.gz rails-1933fbaecf5efa982c4214fed51d88d120ffe236.tar.bz2 rails-1933fbaecf5efa982c4214fed51d88d120ffe236.zip |
Fix Rubocop offense
```
Offenses:
activesupport/lib/active_support/subscriber.rb:91:17:
C: Layout/SpaceAroundOperators: Operator = should be surrounded by a single space.
event = event_stack.pop
```
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/subscriber.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/subscriber.rb b/activesupport/lib/active_support/subscriber.rb index 54c770ac35..5a4c3d74af 100644 --- a/activesupport/lib/active_support/subscriber.rb +++ b/activesupport/lib/active_support/subscriber.rb @@ -88,7 +88,7 @@ module ActiveSupport end def finish(name, id, payload) - event = event_stack.pop + event = event_stack.pop event.finish! event.payload.merge!(payload) |