From db23054412100483c32726d1507f1f076e1e05e5 Mon Sep 17 00:00:00 2001 From: Konrad Dzwinel Date: Tue, 17 Oct 2017 02:34:51 +0200 Subject: [PATCH] Change details table headings. --- lighthouse-core/audits/seo/anchor-text.js | 4 ++-- lighthouse-core/gather/gatherers/seo/crawlable-anchors.js | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lighthouse-core/audits/seo/anchor-text.js b/lighthouse-core/audits/seo/anchor-text.js index 1d5d2d2637a2..2cd0c94f5892 100644 --- a/lighthouse-core/audits/seo/anchor-text.js +++ b/lighthouse-core/audits/seo/anchor-text.js @@ -53,8 +53,8 @@ class AnchorText extends Audit { }); const headings = [ - {key: 'href', itemType: 'url', text: 'URL'}, - {key: 'text', itemType: 'text', text: 'Text'}, + {key: 'href', itemType: 'url', text: 'Link destination'}, + {key: 'text', itemType: 'text', text: 'Link Text'}, ]; const details = Audit.makeTableDetails(headings, failingAnchors); diff --git a/lighthouse-core/gather/gatherers/seo/crawlable-anchors.js b/lighthouse-core/gather/gatherers/seo/crawlable-anchors.js index e63b994ea5ca..0aa7f500953e 100644 --- a/lighthouse-core/gather/gatherers/seo/crawlable-anchors.js +++ b/lighthouse-core/gather/gatherers/seo/crawlable-anchors.js @@ -9,7 +9,6 @@ const Gatherer = require('../gatherer'); const DOMHelpers = require('../../../lib/dom-helpers.js'); class CrawlableAnchors extends Gatherer { - /** * @param {{driver: !Object}} options Run options * @return {!Promise>}