From eeea717fb22dfaaa49201321614c28f09e47bf41 Mon Sep 17 00:00:00 2001 From: Ken Guest Date: Mon, 3 Sep 2018 09:32:28 +0000 Subject: [PATCH 1/2] Fix grocers apostrophe typo (API's v APIs) --- lighthouse-core/audits/deprecations.js | 2 +- lighthouse-core/test/results/sample_v2.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lighthouse-core/audits/deprecations.js b/lighthouse-core/audits/deprecations.js index 5c5484229454..0df9375c9464 100644 --- a/lighthouse-core/audits/deprecations.js +++ b/lighthouse-core/audits/deprecations.js @@ -22,7 +22,7 @@ class Deprecations extends Audit { return { id: 'deprecations', title: 'Avoids deprecated APIs', - failureTitle: 'Uses deprecated API\'s', + failureTitle: 'Uses deprecated APIs', description: 'Deprecated APIs will eventually be removed from the browser. ' + '[Learn more](https://www.chromestatus.com/features#deprecated).', requiredArtifacts: ['ChromeConsoleMessages'], diff --git a/lighthouse-core/test/results/sample_v2.json b/lighthouse-core/test/results/sample_v2.json index 230c95f8f598..2d59b639d465 100644 --- a/lighthouse-core/test/results/sample_v2.json +++ b/lighthouse-core/test/results/sample_v2.json @@ -593,7 +593,7 @@ }, "deprecations": { "id": "deprecations", - "title": "Uses deprecated API's", + "title": "Uses deprecated APIs", "description": "Deprecated APIs will eventually be removed from the browser. [Learn more](https://www.chromestatus.com/features#deprecated).", "score": 0, "scoreDisplayMode": "binary", @@ -3795,4 +3795,4 @@ ] } } -} \ No newline at end of file +} From d71f9d01187a20aef8bff573d59e6026dd2945d7 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Tue, 4 Sep 2018 18:45:41 -0700 Subject: [PATCH 2/2] Update sample_v2.json