aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-05-07 11:30:50 -0400
committerJon Moss <maclover7@users.noreply.github.com>2016-05-07 11:30:50 -0400
commitdb6a11b1a0a2139c1639312082841a442d220ef2 (patch)
treeb7653e7348a32da229f483fac1e434443e3ad124
parent809236bc4c608e50262de4f82df79b45da1df2d4 (diff)
parent0c3012991a188c28ede4262fc2721f269d07f0ee (diff)
downloadrails-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.rb4
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