aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-08-16 10:36:29 -0400
committerJon Moss <me@jonathanmoss.me>2017-08-16 10:36:29 -0400
commit393a7aad99c1a5fbd1ff8d83390b8243267b3334 (patch)
tree5d0c11057bc46a87794659c2e068789740d09a1b /guides
parent102ee601ff8245831b931288c4b47bf0ba47fc66 (diff)
downloadrails-393a7aad99c1a5fbd1ff8d83390b8243267b3334.tar.gz
rails-393a7aad99c1a5fbd1ff8d83390b8243267b3334.tar.bz2
rails-393a7aad99c1a5fbd1ff8d83390b8243267b3334.zip
Change to plural
`it` and `has` are for singular, not plural [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 6e927d7244..49a0584d51 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -278,7 +278,7 @@ You can now just call the dependency once with a wildcard.
### `ActionView::Helpers::RecordTagHelper` moved to external gem (record_tag_helper)
-`content_tag_for` and `div_for` has been removed in favor of just using `content_tag`. To continue using it, add the `record_tag_helper` gem to your Gemfile:
+`content_tag_for` and `div_for` have been removed in favor of just using `content_tag`. To continue using the older methods, add the `record_tag_helper` gem to your Gemfile:
```ruby
gem 'record_tag_helper', '~> 1.0'