diff options
author | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-07-19 12:02:09 +0200 |
---|---|---|
committer | Łukasz Strzałkowski <lukasz.strzalkowski@gmail.com> | 2013-08-25 11:39:11 +0200 |
commit | 1656f58f073582e56184d40584f2ce893ab57497 (patch) | |
tree | 5594b501971e469e80782a538af83536ab7c2c39 /actionpack/lib/abstract_controller/rendering.rb | |
parent | 718332536c4f6c715a7b77f68749e4c75f8a6eae (diff) | |
download | rails-1656f58f073582e56184d40584f2ce893ab57497.tar.gz rails-1656f58f073582e56184d40584f2ce893ab57497.tar.bz2 rails-1656f58f073582e56184d40584f2ce893ab57497.zip |
Improve AV::Rendering docs
Diffstat (limited to 'actionpack/lib/abstract_controller/rendering.rb')
-rw-r--r-- | actionpack/lib/abstract_controller/rendering.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb index 6bfe0a361f..93ded404d6 100644 --- a/actionpack/lib/abstract_controller/rendering.rb +++ b/actionpack/lib/abstract_controller/rendering.rb @@ -41,6 +41,9 @@ module AbstractController def render_to_body(options = {}) end + # Normalize arguments, options and then delegates render_to_body and + # sticks the result in self.response_body. + # :api: public def render(*args, &block) end |