aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/rendering_helper.rb
diff options
context:
space:
mode:
authorTyler Hunt <tyler@tylerhunt.com>2018-05-11 14:19:01 -0400
committerTyler Hunt <tyler@tylerhunt.com>2018-05-11 14:19:29 -0400
commitc6e1afdea4179e7b2d3dd7f183996586a723f5b0 (patch)
tree5bc576165be275a18351f88c8fa20c5622ff7f55 /actionview/lib/action_view/helpers/rendering_helper.rb
parentab3ad6a9ad119825636153cd521e25c280483340 (diff)
downloadrails-c6e1afdea4179e7b2d3dd7f183996586a723f5b0.tar.gz
rails-c6e1afdea4179e7b2d3dd7f183996586a723f5b0.tar.bz2
rails-c6e1afdea4179e7b2d3dd7f183996586a723f5b0.zip
Remove reference to old `:text` rendering option
[ci skip]
Diffstat (limited to 'actionview/lib/action_view/helpers/rendering_helper.rb')
-rw-r--r--actionview/lib/action_view/helpers/rendering_helper.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/rendering_helper.rb b/actionview/lib/action_view/helpers/rendering_helper.rb
index 8e505ab054..1e12aa2736 100644
--- a/actionview/lib/action_view/helpers/rendering_helper.rb
+++ b/actionview/lib/action_view/helpers/rendering_helper.rb
@@ -13,7 +13,6 @@ module ActionView
# * <tt>:partial</tt> - See <tt>ActionView::PartialRenderer</tt>.
# * <tt>:file</tt> - Renders an explicit template file (this used to be the old default), add :locals to pass in those.
# * <tt>:inline</tt> - Renders an inline template similar to how it's done in the controller.
- # * <tt>:text</tt> - Renders the text passed in out.
# * <tt>:plain</tt> - Renders the text passed in out. Setting the content
# type as <tt>text/plain</tt>.
# * <tt>:html</tt> - Renders the HTML safe string passed in out, otherwise