aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal/data_streaming.rb
diff options
context:
space:
mode:
authorrobertomiranda <rjmaltamar@gmail.com>2014-02-18 15:04:16 -0500
committerrobertomiranda <rjmaltamar@gmail.com>2014-02-18 15:05:10 -0500
commite220a34e396f026bbee8c7492aaa0ca515995a05 (patch)
tree30ae3a7b4e7759f646d009046f7b0325c227c6d5 /actionpack/lib/action_controller/metal/data_streaming.rb
parent5dc6bf5fbcb70b330edff8da257607acd1760805 (diff)
downloadrails-e220a34e396f026bbee8c7492aaa0ca515995a05.tar.gz
rails-e220a34e396f026bbee8c7492aaa0ca515995a05.tar.bz2
rails-e220a34e396f026bbee8c7492aaa0ca515995a05.zip
Update Docs in favor to use render plain instead of text option
ref #14062
Diffstat (limited to 'actionpack/lib/action_controller/metal/data_streaming.rb')
-rw-r--r--actionpack/lib/action_controller/metal/data_streaming.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/data_streaming.rb b/actionpack/lib/action_controller/metal/data_streaming.rb
index 75c4d3ef99..1abd8d3a33 100644
--- a/actionpack/lib/action_controller/metal/data_streaming.rb
+++ b/actionpack/lib/action_controller/metal/data_streaming.rb
@@ -96,7 +96,7 @@ module ActionController #:nodoc:
end
# Sends the given binary data to the browser. This method is similar to
- # <tt>render text: data</tt>, but also allows you to specify whether
+ # <tt>render plain: data</tt>, but also allows you to specify whether
# the browser should display the response as a file attachment (i.e. in a
# download dialog) or as inline data. You may also set the content type,
# the apparent file name, and other things.