aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/action_cable/connection/base.rb
diff options
context:
space:
mode:
authorTom Kadwill <tomkadwill@gmail.com>2016-04-17 22:03:11 +0100
committerTom Kadwill <tomkadwill@gmail.com>2016-04-18 08:43:50 +0100
commit2ef18c1ebc33585432f46c1b2497268858f4532d (patch)
tree83de416f8e1e25e95d77593c3ebfac3d436f7968 /actioncable/lib/action_cable/connection/base.rb
parent87c2c070c4cf1b62ac364c53496a2da000fbf9d6 (diff)
downloadrails-2ef18c1ebc33585432f46c1b2497268858f4532d.tar.gz
rails-2ef18c1ebc33585432f46c1b2497268858f4532d.tar.bz2
rails-2ef18c1ebc33585432f46c1b2497268858f4532d.zip
Fix typos in ActionCable Channel [ci skip]
Diffstat (limited to 'actioncable/lib/action_cable/connection/base.rb')
-rw-r--r--actioncable/lib/action_cable/connection/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/connection/base.rb b/actioncable/lib/action_cable/connection/base.rb
index 9a7dfbe761..cc4e0f8c8b 100644
--- a/actioncable/lib/action_cable/connection/base.rb
+++ b/actioncable/lib/action_cable/connection/base.rb
@@ -40,7 +40,7 @@ module ActionCable
# Second, we rely on the fact that the WebSocket connection is established with the cookies from the domain being sent along. This makes
# it easy to use signed cookies that were set when logging in via a web interface to authorize the WebSocket connection.
#
- # Finally, we add a tag to the connection-specific logger with name of the current user to easily distinguish their messages in the log.
+ # Finally, we add a tag to the connection-specific logger with the name of the current user to easily distinguish their messages in the log.
#
# Pretty simple, eh?
class Base