diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-06-10 09:31:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-10 09:31:16 -0400 |
commit | 527200a456f50428984671f6ca41cb9e82077cb7 (patch) | |
tree | 61f8435948ee4485a214fdd6c329aa3d01fe83b3 | |
parent | f9a39e0d51400c62348e6e299d4c53e9eababef2 (diff) | |
parent | 512e89f967b1828f0aa0a8e265792bfe60151d91 (diff) | |
download | rails-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.rb | 2 |
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. |