diff options
author | Yoshiyuki Hirano <yhirano@me.com> | 2017-08-26 07:56:46 +0900 |
---|---|---|
committer | Yoshiyuki Hirano <yhirano@me.com> | 2017-08-26 07:56:46 +0900 |
commit | 5eb831d3f25dafb1128dd45334fe8e918ef52004 (patch) | |
tree | 20554136bf43b18ee17e4fe522a74fdcb294a6f1 /actioncable/lib/action_cable | |
parent | 14c1a9c5e3471decee9ad09b91024a4293f1b2c2 (diff) | |
download | rails-5eb831d3f25dafb1128dd45334fe8e918ef52004.tar.gz rails-5eb831d3f25dafb1128dd45334fe8e918ef52004.tar.bz2 rails-5eb831d3f25dafb1128dd45334fe8e918ef52004.zip |
Use typewriter in doc for Action Cable [ci skip]
Diffstat (limited to 'actioncable/lib/action_cable')
-rw-r--r-- | actioncable/lib/action_cable/server/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/server/base.rb b/actioncable/lib/action_cable/server/base.rb index 6c6f6c2936..1ee03f6dfc 100644 --- a/actioncable/lib/action_cable/server/base.rb +++ b/actioncable/lib/action_cable/server/base.rb @@ -30,7 +30,7 @@ module ActionCable config.connection_class.call.new(self, env).process end - # Disconnect all the connections identified by `identifiers` on this server or any others via RemoteConnections. + # Disconnect all the connections identified by +identifiers+ on this server or any others via RemoteConnections. def disconnect(identifiers) remote_connections.where(identifiers).disconnect end |