diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2016-02-13 20:36:16 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2016-02-13 20:44:44 +0900 |
commit | 1335959135b908c284e4d7179e9d8c1261f0ee95 (patch) | |
tree | cffbcba4cec86968869573e7bb1ee8a63f7492e8 /actioncable/lib/action_cable/connection | |
parent | e183227e5c7665b6505dd319724f1a540946b7ce (diff) | |
download | rails-1335959135b908c284e4d7179e9d8c1261f0ee95.tar.gz rails-1335959135b908c284e4d7179e9d8c1261f0ee95.tar.bz2 rails-1335959135b908c284e4d7179e9d8c1261f0ee95.zip |
Fix grammar `a` to `an` [ci skip]
Diffstat (limited to 'actioncable/lib/action_cable/connection')
-rw-r--r-- | actioncable/lib/action_cable/connection/base.rb | 2 |
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 e23789978c..1acef93025 100644 --- a/actioncable/lib/action_cable/connection/base.rb +++ b/actioncable/lib/action_cable/connection/base.rb @@ -35,7 +35,7 @@ module ActionCable # # First, we declare that this connection can be identified by its current_user. This allows us later to be able to find all connections # established for that current_user (and potentially disconnect them if the user was removed from an account). You can declare as many - # identification indexes as you like. Declaring an identification means that a attr_accessor is automatically set for that key. + # identification indexes as you like. Declaring an identification means that an attr_accessor is automatically set for that key. # # 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. |