aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-05-24 14:51:44 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-05-24 14:51:44 -0300
commit528e59062f21023aa8aaa86d66f6a8e0b81b488a (patch)
treedf1d0098be6833ba2c73d597a0024050fcc13e1c
parente2bd0eb758100a5d6f55201318809a7ed7b37040 (diff)
parentb4db241a6e40bda4a966d9355b3e7696f11a4a23 (diff)
downloadrails-528e59062f21023aa8aaa86d66f6a8e0b81b488a.tar.gz
rails-528e59062f21023aa8aaa86d66f6a8e0b81b488a.tar.bz2
rails-528e59062f21023aa8aaa86d66f6a8e0b81b488a.zip
Merge pull request #15264 from Gaurav2728/gaurav-documentation_fix
documentation link fix and removing unused reader
-rw-r--r--actionview/lib/action_view/rendering.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/rendering.rb b/actionview/lib/action_view/rendering.rb
index 017302d40f..c92d090cce 100644
--- a/actionview/lib/action_view/rendering.rb
+++ b/actionview/lib/action_view/rendering.rb
@@ -62,8 +62,8 @@ module ActionView
#
# The view class must have the following methods:
# View.new[lookup_context, assigns, controller]
- # Create a new ActionView instance for a controller
- # View#render[options]
+ # Create a new ActionView instance for a controller and we can also pass the arguments.
+ # View#render(option)
# Returns String with the rendered template
#
# Override this method in a module to change the default behavior.