diff --git a/lighthouse-core/audits/byte-efficiency/uses-webp-images.js b/lighthouse-core/audits/byte-efficiency/uses-webp-images.js index d20484cf998e..ebdde7c9fe58 100644 --- a/lighthouse-core/audits/byte-efficiency/uses-webp-images.js +++ b/lighthouse-core/audits/byte-efficiency/uses-webp-images.js @@ -21,10 +21,10 @@ class UsesWebPImages extends ByteEfficiencyAudit { static get meta() { return { name: 'uses-webp-images', - description: 'Serve images as WebP', + description: 'Serve images in next-gen formats', informative: true, - helpText: 'WebP provides better lossy and lossless compression than PNG or JPEG, ' + - 'which means faster downloads and less data consumption. ' + + helpText: 'Image formats like JPEG 2000, JPEG XR, and WebP often provide better ' + + 'compression than PNG or JPEG, which means faster downloads and less data consumption. ' + '[Learn more](https://developers.google.com/web/tools/lighthouse/audits/webp).', requiredArtifacts: ['OptimizedImages', 'devtoolsLogs'], };