diff options
author | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-07-11 00:11:33 +0200 |
---|---|---|
committer | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-08-25 11:39:09 +0200 |
commit | 8b8111aeeab1f9537b07d8e344a420ed6ab01b57 (patch) | |
tree | 5636c40b840da348041e67298cc9919488966b03 /actionview/lib/action_view | |
parent | 8e3413d41098eca3806ef0bed978d71397e3b1da (diff) | |
download | rails-8b8111aeeab1f9537b07d8e344a420ed6ab01b57.tar.gz rails-8b8111aeeab1f9537b07d8e344a420ed6ab01b57.tar.bz2 rails-8b8111aeeab1f9537b07d8e344a420ed6ab01b57.zip |
Remove 'api plugin' from docs
AbstractController::Rendering is module which defines thie api
Diffstat (limited to 'actionview/lib/action_view')
-rw-r--r-- | actionview/lib/action_view/rendering.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/actionview/lib/action_view/rendering.rb b/actionview/lib/action_view/rendering.rb index 6453b0543a..925ae14925 100644 --- a/actionview/lib/action_view/rendering.rb +++ b/actionview/lib/action_view/rendering.rb @@ -94,7 +94,6 @@ module ActionView end # Raw rendering of a template. - # :api: plugin def render_to_body(options = {}) _process_options(options) _render_template(options) @@ -136,7 +135,6 @@ module ActionView # Normalize args by converting render "foo" to render :action => "foo" and # render "foo/bar" to render :file => "foo/bar". - # :api: plugin def _normalize_args(action=nil, options={}) options = super(action, options) case action @@ -155,7 +153,6 @@ module ActionView end # Normalize options. - # :api: plugin def _normalize_options(options) options = super(options) if options[:partial] == true |