aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorप्रथमेश Sonpatki <csonpatki@gmail.com>2016-02-21 16:08:53 +0530
committerप्रथमेश Sonpatki <csonpatki@gmail.com>2016-02-21 16:08:53 +0530
commit127fd4705b02e4f2d6d1bf544f7c116de8adcdd9 (patch)
treeb3d0775446144fa54ea6e3dcd2023c251fe64436
parentd34151996db155c79b07df2abca5053b3a513d54 (diff)
parent3f97d77372152887806c2dbb90ce8717803344b4 (diff)
downloadrails-127fd4705b02e4f2d6d1bf544f7c116de8adcdd9.tar.gz
rails-127fd4705b02e4f2d6d1bf544f7c116de8adcdd9.tar.bz2
rails-127fd4705b02e4f2d6d1bf544f7c116de8adcdd9.zip
Merge pull request #23801 from chashmeetsingh/patch-2
Fixed typo
-rw-r--r--actioncable/lib/action_cable/channel/periodic_timers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/channel/periodic_timers.rb b/actioncable/lib/action_cable/channel/periodic_timers.rb
index 56597d02d7..0f6e854520 100644
--- a/actioncable/lib/action_cable/channel/periodic_timers.rb
+++ b/actioncable/lib/action_cable/channel/periodic_timers.rb
@@ -12,7 +12,7 @@ module ActionCable
end
module ClassMethods
- # Allow you to call a private method <tt>every</tt> so often seconds. This periodic timer can be useful
+ # Allows you to call a private method <tt>every</tt> so often seconds. This periodic timer can be useful
# for sending a steady flow of updates to a client based off an object that was configured on subscription.
# It's an alternative to using streams if the channel is able to do the work internally.
def periodically(callback, every:)