diff --git a/lighthouse-core/audits/accessibility/document-title.js b/lighthouse-core/audits/accessibility/document-title.js
index 301e2acaac68..70239b2e800b 100644
--- a/lighthouse-core/audits/accessibility/document-title.js
+++ b/lighthouse-core/audits/accessibility/document-title.js
@@ -20,10 +20,10 @@ class DocumentTitle extends AxeAudit {
return {
name: 'document-title',
description: 'Document has a `
` element',
- failureDescription: 'Document does not have a `` element',
- helpText: 'Screen reader users use page titles to get an overview of the contents of ' +
- 'the page. ' +
- '[Learn more](https://dequeuniversity.com/rules/axe/2.2/document-title?application=lighthouse).',
+ failureDescription: 'Document doesn\'t have a `` element',
+ helpText: 'The title gives screen reader users an overview of the page, and search ' +
+ 'engine users rely on it heavily to determine if a page is relevant to their search. ' +
+ '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/title).',
requiredArtifacts: ['Accessibility'],
};
}