Skip to content

Commit

Permalink
fix typo (#1142)
Browse files Browse the repository at this point in the history
  • Loading branch information
Janpot authored and ebidel committed Dec 12, 2016
1 parent 11e41a3 commit 48069fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/audits/dobetterweb/no-console-time.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class NoConsoleTimeAudit extends Audit {
category: 'JavaScript',
name: 'no-console-time',
description: 'Site does not use console.time() in its own scripts',
helpText: 'Consider using the <a href="https://developer.mozilla.org/en-US/docs/Web/API/User_Timing_API" target="_blank">User Timine API</a> (<a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/mark" target="_blank">performance.mark()</a> and <a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/measure" target="_blank">performance.measure()</a>), which is a standard, uses high resolution timestamps, and has the added benefit of integrating with the DevTools timeline.',
helpText: 'Consider using the <a href="https://developer.mozilla.org/en-US/docs/Web/API/User_Timing_API" target="_blank">User Timing API</a> (<a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/mark" target="_blank">performance.mark()</a> and <a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/measure" target="_blank">performance.measure()</a>), which is a standard, uses high resolution timestamps, and has the added benefit of integrating with the DevTools timeline.',
requiredArtifacts: ['URL', 'ConsoleTimeUsage']
};
}
Expand Down

0 comments on commit 48069fa

Please sign in to comment.