diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-07-08 21:32:53 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-07-08 21:32:53 -0300 |
commit | ac6f118d5ccecc16fa8e40496fea8d2bf84bba76 (patch) | |
tree | 43122d0e2728a56e05332f7830d92995ca8a981a /lib/action_cable | |
parent | f2a02907100f872b5e3dd283c13485ac73065640 (diff) | |
parent | 7ea5619e760edc0adc6eb0749113e129221f4a13 (diff) | |
download | rails-ac6f118d5ccecc16fa8e40496fea8d2bf84bba76.tar.gz rails-ac6f118d5ccecc16fa8e40496fea8d2bf84bba76.tar.bz2 rails-ac6f118d5ccecc16fa8e40496fea8d2bf84bba76.zip |
Merge pull request #4 from lsylvester/connection-base-doc-typo
Fix typo in connection base documentation
Diffstat (limited to 'lib/action_cable')
-rw-r--r-- | lib/action_cable/connection/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/connection/base.rb b/lib/action_cable/connection/base.rb index cef0bcc2e7..ff7a98f777 100644 --- a/lib/action_cable/connection/base.rb +++ b/lib/action_cable/connection/base.rb @@ -65,7 +65,7 @@ module ActionCable end # Called by the server when a new websocket connection is established. This configures the callbacks intended for overwriting by the user. - # This method should now be called directly. Rely on the #connect (and #disconnect) callback instead. + # This method should not be called directly. Rely on the #connect (and #disconnect) callback instead. def process logger.info started_request_message |