diff options
author | Brian Davis <contact@briandavisdev.com> | 2015-07-15 21:18:44 -0600 |
---|---|---|
committer | Brian Davis <contact@briandavisdev.com> | 2015-07-15 21:19:17 -0600 |
commit | 5334889a27b11363cc443b1af6399ebae6b7d416 (patch) | |
tree | 4b8c44ebca831f4f0ac2e2d705476142a9662232 /actionview/lib | |
parent | 094571b46dbc00a2db0bfcc96c38d984d2b675f3 (diff) | |
download | rails-5334889a27b11363cc443b1af6399ebae6b7d416.tar.gz rails-5334889a27b11363cc443b1af6399ebae6b7d416.tar.bz2 rails-5334889a27b11363cc443b1af6399ebae6b7d416.zip |
grammar fix to content_for method documentation in capture_helper.rb
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/capture_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/capture_helper.rb b/actionview/lib/action_view/helpers/capture_helper.rb index a67ba580f1..93c7cba395 100644 --- a/actionview/lib/action_view/helpers/capture_helper.rb +++ b/actionview/lib/action_view/helpers/capture_helper.rb @@ -115,7 +115,7 @@ module ActionView # <li><%= link_to 'Home', action: 'index' %></li> # <% end %> # - # And in other place: + # And in another place: # # <% content_for :navigation do %> # <li><%= link_to 'Login', action: 'login' %></li> |