From 63beebe1d652ecc8ded41ca1223a9427dbf4d8ef Mon Sep 17 00:00:00 2001 From: Piper Chester Date: Mon, 23 Oct 2017 17:09:01 -0700 Subject: [PATCH] core: Fix minor grammatical error (#3638) http://www.grammarbook.com/punctuation/semicolons.asp _Noticed this during the ChromeDevSummit talk this morning._ --- lighthouse-core/audits/load-fast-enough-for-pwa.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse-core/audits/load-fast-enough-for-pwa.js b/lighthouse-core/audits/load-fast-enough-for-pwa.js index 7f126406c805..4fa7dff89ac1 100644 --- a/lighthouse-core/audits/load-fast-enough-for-pwa.js +++ b/lighthouse-core/audits/load-fast-enough-for-pwa.js @@ -113,7 +113,7 @@ class LoadFastEnough4Pwa extends Audit { return { rawValue: true, // eslint-disable-next-line max-len - debugString: `First Interactive was found at ${Util.formatMilliseconds(timeToFirstInteractive)}, however, the network request latencies were not sufficiently realistic, so the performance measurements cannot be trusted.`, + debugString: `First Interactive was found at ${Util.formatMilliseconds(timeToFirstInteractive)}; however, the network request latencies were not sufficiently realistic, so the performance measurements cannot be trusted.`, extendedInfo, details, };