diff options
author | DAVID MOORE <khundawg@gmail.com> | 2016-01-15 12:41:18 -0500 |
---|---|---|
committer | DAVID MOORE <khundawg@gmail.com> | 2016-01-15 12:41:18 -0500 |
commit | e4af3ad335a472c138f742a8f629e857f7f8dbfd (patch) | |
tree | b479ac7ecf61c11776c48dcbaa34546529c2ead5 /actioncable/lib/action_cable | |
parent | e1739070beb25bd6b6e2060cc7fbcf9e50791c68 (diff) | |
download | rails-e4af3ad335a472c138f742a8f629e857f7f8dbfd.tar.gz rails-e4af3ad335a472c138f742a8f629e857f7f8dbfd.tar.bz2 rails-e4af3ad335a472c138f742a8f629e857f7f8dbfd.zip |
[ci skip] Fix typo in docs
Found this small omission while reviewing the ActionCable docs.
[Dave Moore]
Diffstat (limited to 'actioncable/lib/action_cable')
-rw-r--r-- | actioncable/lib/action_cable/connection/identification.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/connection/identification.rb b/actioncable/lib/action_cable/connection/identification.rb index 2d75ff8d6d..885ff3f102 100644 --- a/actioncable/lib/action_cable/connection/identification.rb +++ b/actioncable/lib/action_cable/connection/identification.rb @@ -11,7 +11,7 @@ module ActionCable end class_methods do - # Mark a key as being a connection identifier index that can then used to find the specific connection again later. + # Mark a key as being a connection identifier index that can then be used to find the specific connection again later. # Common identifiers are current_user and current_account, but could be anything really. # # Note that anything marked as an identifier will automatically create a delegate by the same name on any |