Skip to content

Commit

Permalink
Update helpText
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed Sep 26, 2016
1 parent e3df716 commit 13ab3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/audits/dobetterweb/no-datenow.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: '<a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/now" target="_blank">performance.now()</a> has better precision than <code>Date.now()</code> and always increases at a constant rate, independent of the system clock.',
helpText: 'Consider using <a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/now" target="_blank">performance.now()</a>, which as better precision than <code>Date.now()</code> and always increases at a constant rate, independent of the system clock.',
requiredArtifacts: ['URL', 'DateNowUse']
};
}
Expand Down

0 comments on commit 13ab3c1

Please sign in to comment.