diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-05-07 11:30:50 -0400 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-05-07 11:30:50 -0400 |
commit | db6a11b1a0a2139c1639312082841a442d220ef2 (patch) | |
tree | b7653e7348a32da229f483fac1e434443e3ad124 | |
parent | 809236bc4c608e50262de4f82df79b45da1df2d4 (diff) | |
parent | 0c3012991a188c28ede4262fc2721f269d07f0ee (diff) | |
download | rails-db6a11b1a0a2139c1639312082841a442d220ef2.tar.gz rails-db6a11b1a0a2139c1639312082841a442d220ef2.tar.bz2 rails-db6a11b1a0a2139c1639312082841a442d220ef2.zip |
Merge pull request #24904 from jonatack/helpers-grammar-fixes
Helpers doc grammar fix [skip ci]
-rw-r--r-- | actionpack/lib/action_controller/metal/helpers.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/helpers.rb b/actionpack/lib/action_controller/metal/helpers.rb index 22493dea50..295f0cb66f 100644 --- a/actionpack/lib/action_controller/metal/helpers.rb +++ b/actionpack/lib/action_controller/metal/helpers.rb @@ -71,7 +71,7 @@ module ActionController attrs.flatten.each { |attr| helper_method(attr, "#{attr}=") } end - # Provides a proxy to access helpers methods from outside the view. + # Provides a proxy to access helper methods from outside the view. def helpers @helper_proxy ||= begin proxy = ActionView::Base.new @@ -114,7 +114,7 @@ module ActionController end end - # Provides a proxy to access helpers methods from outside the view. + # Provides a proxy to access helper methods from outside the view. def helpers @_helper_proxy ||= view_context end |