diff options
author | Arthur Neves <arthurnn@gmail.com> | 2016-03-14 16:43:35 -0400 |
---|---|---|
committer | Arthur Neves <arthurnn@gmail.com> | 2016-03-14 16:43:49 -0400 |
commit | f85bbed4cdc1bdfd1e0dbd97bce9db81e44cbd11 (patch) | |
tree | ed6bf30e28e2eb3ed7913873552faa202e08ba7a /actionpack | |
parent | 68c76c6b09135f25d94d302a281db2f79590ab31 (diff) | |
download | rails-f85bbed4cdc1bdfd1e0dbd97bce9db81e44cbd11.tar.gz rails-f85bbed4cdc1bdfd1e0dbd97bce9db81e44cbd11.tar.bz2 rails-f85bbed4cdc1bdfd1e0dbd97bce9db81e44cbd11.zip |
update rendering comment
[skip ci]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/abstract_controller/rendering.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb index 28f9b76036..1395db3dc1 100644 --- a/actionpack/lib/abstract_controller/rendering.rb +++ b/actionpack/lib/abstract_controller/rendering.rb @@ -139,7 +139,7 @@ module AbstractController end # Normalize args by converting render "foo" to render :action => "foo" and - # render "foo/bar" to render :file => "foo/bar". + # render "foo/bar" to render :app_template_file => "foo/bar". # :api: plugin def _normalize_args(action=nil, options={}) case action |