Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
Change `there're` to `there are`

`there're` is not in the dictionary and we use `there are` in many places

https://www.dictionary.com/misspelling?term=there%27re
  • Loading branch information
jbampton committed Mar 26, 2022
1 parent af0733a commit d6f4701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/rails_guides/generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def extract_anchors(html)
anchors = Set.new
html.scan(/<h\d\s+id="([^"]+)/).flatten.each do |anchor|
if anchors.member?(anchor)
puts "*** DUPLICATE ID: #{anchor}, please make sure that there're no headings with the same name at the same level."
puts "*** DUPLICATE ID: #{anchor}, please make sure that there are no headings with the same name at the same level."
else
anchors << anchor
end
Expand Down

0 comments on commit d6f4701

Please sign in to comment.