aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorAlex Kitchens <akitchens@financialpayments.com>2016-06-10 07:57:15 -0500
committerAlex Kitchens <akitchens@financialpayments.com>2016-06-10 07:57:36 -0500
commit512e89f967b1828f0aa0a8e265792bfe60151d91 (patch)
tree61f8435948ee4485a214fdd6c329aa3d01fe83b3 /actionpack/lib/action_controller
parentf9a39e0d51400c62348e6e299d4c53e9eababef2 (diff)
downloadrails-512e89f967b1828f0aa0a8e265792bfe60151d91.tar.gz
rails-512e89f967b1828f0aa0a8e265792bfe60151d91.tar.bz2
rails-512e89f967b1828f0aa0a8e265792bfe60151d91.zip
Fix typo in ActionController::Renderer [ci skip]
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/renderer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/renderer.rb b/actionpack/lib/action_controller/renderer.rb
index 5ff4a658ad..a8c8d66682 100644
--- a/actionpack/lib/action_controller/renderer.rb
+++ b/actionpack/lib/action_controller/renderer.rb
@@ -1,7 +1,7 @@
require 'active_support/core_ext/hash/keys'
module ActionController
- # ActionController::Renderer allows to render arbitrary templates
+ # ActionController::Renderer allows you to render arbitrary templates
# without requirement of being in controller actions.
#
# You get a concrete renderer class by invoking ActionController::Base#renderer.