diff --git a/lighthouse-core/audits/webapp-install-banner.js b/lighthouse-core/audits/webapp-install-banner.js index 311627f4715c..28ac2169d98c 100644 --- a/lighthouse-core/audits/webapp-install-banner.js +++ b/lighthouse-core/audits/webapp-install-banner.js @@ -39,7 +39,9 @@ class WebappInstallBanner extends MultiCheckAudit { name: 'webapp-install-banner', description: 'User can be prompted to Install the Web App', failureDescription: 'User will not be prompted to Install the Web App', - helpText: 'While users can manually add your site to their homescreen, the [prompt (aka app install banner)](https://developers.google.com/web/fundamentals/engage-and-retain/app-install-banners/) will proactively prompt the user to install the app if the various requirements are met and the user has moderate engagement with your site.', + helpText: 'Browsers can proactively prompt users to add your app to their homescreen, ' + + 'which can lead to higher engagement. ' + + '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/install-prompt).', requiredArtifacts: ['URL', 'ServiceWorker', 'Manifest', 'StartUrl'] }; }