aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/action_cable
diff options
context:
space:
mode:
authorChashmeet Singh <chashmeetsingh@gmail.com>2016-02-21 14:09:42 +0530
committerChashmeet Singh <chashmeetsingh@gmail.com>2016-02-21 14:09:42 +0530
commit3f97d77372152887806c2dbb90ce8717803344b4 (patch)
treeb3d0775446144fa54ea6e3dcd2023c251fe64436 /actioncable/lib/action_cable
parentd34151996db155c79b07df2abca5053b3a513d54 (diff)
downloadrails-3f97d77372152887806c2dbb90ce8717803344b4.tar.gz
rails-3f97d77372152887806c2dbb90ce8717803344b4.tar.bz2
rails-3f97d77372152887806c2dbb90ce8717803344b4.zip
Fixed typo
Diffstat (limited to 'actioncable/lib/action_cable')
-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:)