lib/nanoc/checking/checks/external_links.rb in nanoc-4.11.4 vs lib/nanoc/checking/checks/external_links.rb in nanoc-4.11.5
- old
+ new
@@ -76,10 +76,10 @@
location = extract_location(res, url)
return Result.new(href, 'redirection without a target location') if location.nil?
if /^30[18]$/.match?(res.code)
- return Result.new(href, "link have moved permanently to '#{location}'")
+ return Result.new(href, "link has moved permanently to '#{location}'")
end
url = URI.parse(location)
elsif res.code == '200'
return nil