1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fix typo in metal/live [ci skip]

This commit is contained in:
Francesco Rodriguez 2012-07-30 16:54:33 -05:00
parent 4ac81de52f
commit eae19033fb

View file

@ -3,7 +3,7 @@ require 'delegate'
module ActionController # :nodoc:
# Mix this module in to your controller, and all actions in that controller
# will be able to stream data to the client as it's written. For example:
# will be able to stream data to the client as it's written.
#
# class MyController < ActionController::Base
# include ActionController::Live
@ -27,7 +27,7 @@ module ActionController # :nodoc:
# You *must* call close on your stream when you're finished, otherwise the
# socket may be left open forever.
#
# The final caveat is that you actions are executed in a separate thread than
# The final caveat is that your actions are executed in a separate thread than
# the main thread. Make sure your actions are thread safe, and this shouldn't
# be a problem (don't share state across threads, etc).
module Live