aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJon Atack <jonnyatack@gmail.com>2016-05-07 17:15:23 +0200
committerJon Atack <jonnyatack@gmail.com>2016-05-07 17:15:23 +0200
commit0c3012991a188c28ede4262fc2721f269d07f0ee (patch)
treeb7653e7348a32da229f483fac1e434443e3ad124 /actionpack
parent809236bc4c608e50262de4f82df79b45da1df2d4 (diff)
downloadrails-0c3012991a188c28ede4262fc2721f269d07f0ee.tar.gz
rails-0c3012991a188c28ede4262fc2721f269d07f0ee.tar.bz2
rails-0c3012991a188c28ede4262fc2721f269d07f0ee.zip
Helpers doc grammar fix [skip ci]
Diffstat (limited to 'actionpack')
-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