aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2015-12-18 04:46:35 -0200
committerRafael França <rafaelmfranca@gmail.com>2015-12-18 04:46:35 -0200
commitd00f15b8ae10a5e43e33509debf58811e7ac46e7 (patch)
tree547632e64f2cb954ed5f32b91eb3b1bcaff83cf4 /actioncable
parent8f8cb1baa3b5609969805fcdd7295f3d7de2bd6b (diff)
parent2728377d0fe0badc46c85070c598c2e6608d5029 (diff)
downloadrails-d00f15b8ae10a5e43e33509debf58811e7ac46e7.tar.gz
rails-d00f15b8ae10a5e43e33509debf58811e7ac46e7.tar.bz2
rails-d00f15b8ae10a5e43e33509debf58811e7ac46e7.zip
Merge pull request #22655 from akshay-vishnoi/fix-typos
Fix typo
Diffstat (limited to 'actioncable')
-rw-r--r--actioncable/lib/action_cable/channel/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/channel/base.rb b/actioncable/lib/action_cable/channel/base.rb
index f3085840ca..ce9d62635c 100644
--- a/actioncable/lib/action_cable/channel/base.rb
+++ b/actioncable/lib/action_cable/channel/base.rb
@@ -32,7 +32,7 @@ module ActionCable
#
# == Action processing
#
- # Unlike Action Controllers, channels do not follow a REST constraint form for its actions. It's an remote-procedure call model. You can
+ # Unlike Action Controllers, channels do not follow a REST constraint form for its actions. It's a remote-procedure call model. You can
# declare any public method on the channel (optionally taking a data argument), and this method is automatically exposed as callable to the client.
#
# Example: