diff options
author | Shailesh Kalamkar <shailesh.kalamkar@gmail.com> | 2019-03-07 10:06:30 +0530 |
---|---|---|
committer | Shailesh Kalamkar <shailesh.kalamkar@gmail.com> | 2019-03-07 10:06:30 +0530 |
commit | de5d84bfbb1a8a6db68d643eab8bde77cb960e0f (patch) | |
tree | 656f9f4f601e3eb9c584171621fef1c9a721501e /actionpack/lib | |
parent | 4ad4de50ce164f7b62661408eceb4259dfccdf66 (diff) | |
download | rails-de5d84bfbb1a8a6db68d643eab8bde77cb960e0f.tar.gz rails-de5d84bfbb1a8a6db68d643eab8bde77cb960e0f.tar.bz2 rails-de5d84bfbb1a8a6db68d643eab8bde77cb960e0f.zip |
[ci skip] Fix typos
Diffstat (limited to 'actionpack/lib')
-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 cf8c0159e2..8c16308ce7 100644 --- a/actionpack/lib/action_controller/renderer.rb +++ b/actionpack/lib/action_controller/renderer.rb @@ -74,7 +74,7 @@ module ActionController # * <tt>:partial</tt> - See <tt>ActionView::PartialRenderer</tt> for details. # * <tt>:file</tt> - Renders an explicit template file. Add <tt>:locals</tt> to pass in, if so desired. # It shouldn’t be used directly with unsanitized user input due to lack of validation. - # * <tt>:inline</tt> - Renders a ERB template string. + # * <tt>:inline</tt> - Renders an ERB template string. # * <tt>:plain</tt> - Renders provided text and sets the content type as <tt>text/plain</tt>. # * <tt>:html</tt> - Renders the provided HTML safe string, otherwise # performs HTML escape on the string first. Sets the content type as <tt>text/html</tt>. |