提交 eae19033 编写于 作者: F Francesco Rodriguez

fix typo in metal/live [ci skip]

上级 4ac81de5
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
module ActionController # :nodoc: module ActionController # :nodoc:
# Mix this module in to your controller, and all actions in that controller # 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 # class MyController < ActionController::Base
# include ActionController::Live # include ActionController::Live
...@@ -27,7 +27,7 @@ module ActionController # :nodoc: ...@@ -27,7 +27,7 @@ module ActionController # :nodoc:
# You *must* call close on your stream when you're finished, otherwise the # You *must* call close on your stream when you're finished, otherwise the
# socket may be left open forever. # 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 # the main thread. Make sure your actions are thread safe, and this shouldn't
# be a problem (don't share state across threads, etc). # be a problem (don't share state across threads, etc).
module Live module Live
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册