aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-06-10 09:31:16 -0400
committerGitHub <noreply@github.com>2016-06-10 09:31:16 -0400
commit527200a456f50428984671f6ca41cb9e82077cb7 (patch)
tree61f8435948ee4485a214fdd6c329aa3d01fe83b3
parentf9a39e0d51400c62348e6e299d4c53e9eababef2 (diff)
parent512e89f967b1828f0aa0a8e265792bfe60151d91 (diff)
downloadrails-527200a456f50428984671f6ca41cb9e82077cb7.tar.gz
rails-527200a456f50428984671f6ca41cb9e82077cb7.tar.bz2
rails-527200a456f50428984671f6ca41cb9e82077cb7.zip
Merge pull request #25348 from alexcameron89/master
Fix typo in ActionController::Renderer [ci skip]
-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.