aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2015-12-18 12:12:10 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2015-12-18 12:12:52 +0530
commit2728377d0fe0badc46c85070c598c2e6608d5029 (patch)
tree547632e64f2cb954ed5f32b91eb3b1bcaff83cf4 /actioncable
parent8f8cb1baa3b5609969805fcdd7295f3d7de2bd6b (diff)
downloadrails-2728377d0fe0badc46c85070c598c2e6608d5029.tar.gz
rails-2728377d0fe0badc46c85070c598c2e6608d5029.tar.bz2
rails-2728377d0fe0badc46c85070c598c2e6608d5029.zip
[ci skip] 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: