From 13ab3c1b5c04294b55c61d51b933cc4b278b88f1 Mon Sep 17 00:00:00 2001 From: Eric Bidelman Date: Mon, 26 Sep 2016 18:00:12 -0500 Subject: [PATCH] Update helpText --- lighthouse-core/audits/dobetterweb/no-datenow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse-core/audits/dobetterweb/no-datenow.js b/lighthouse-core/audits/dobetterweb/no-datenow.js index 7b9ecf814f41..1365b441f9d8 100644 --- a/lighthouse-core/audits/dobetterweb/no-datenow.js +++ b/lighthouse-core/audits/dobetterweb/no-datenow.js @@ -36,7 +36,7 @@ class NoDateNowAudit extends Audit { category: 'JavaScript', name: 'no-datenow', description: 'Site does not use Date.now() in its own scripts', - helpText: 'performance.now() has better precision than Date.now() and always increases at a constant rate, independent of the system clock.', + helpText: 'Consider using performance.now(), which as better precision than Date.now() and always increases at a constant rate, independent of the system clock.', requiredArtifacts: ['URL', 'DateNowUse'] }; }