aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/channel/base.rb
diff options
context:
space:
mode:
authorJeremy Daer <jeremydaer@gmail.com>2015-10-15 23:25:54 -0700
committerJeremy Daer <jeremydaer@gmail.com>2015-10-15 23:25:54 -0700
commit0dc7f801778c05339ae91a1508002a5c08a88fe4 (patch)
tree3f67ced6a7c98a594d0be018b2e7e4b2d0e76df8 /lib/action_cable/channel/base.rb
parentee16ca8990e80da731e6566b34640e65f6b337e6 (diff)
downloadrails-0dc7f801778c05339ae91a1508002a5c08a88fe4.tar.gz
rails-0dc7f801778c05339ae91a1508002a5c08a88fe4.tar.bz2
rails-0dc7f801778c05339ae91a1508002a5c08a88fe4.zip
Websockets -> WebSocket spelling [ci skip]
Diffstat (limited to 'lib/action_cable/channel/base.rb')
-rw-r--r--lib/action_cable/channel/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/channel/base.rb b/lib/action_cable/channel/base.rb
index 3f0c4d62d9..17ac1a97af 100644
--- a/lib/action_cable/channel/base.rb
+++ b/lib/action_cable/channel/base.rb
@@ -1,6 +1,6 @@
module ActionCable
module Channel
- # The channel provides the basic structure of grouping behavior into logical units when communicating over the websocket connection.
+ # The channel provides the basic structure of grouping behavior into logical units when communicating over the WebSocket connection.
# You can think of a channel like a form of controller, but one that's capable of pushing content to the subscriber in addition to simply
# responding to the subscriber's direct requests.
#