Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
typo:(index.md) Timing-Allow-Origin (#7601)
Browse files Browse the repository at this point in the history
from Timing-Origin-Allow to Timing-Allow-Origin
  • Loading branch information
robberfree authored Apr 1, 2022
1 parent c0e9ace commit ed53ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/site/content/en/metrics/ttfb/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ new PerformanceObserver((entryList) => {
for (const entry of entries) {
// Some resources may have a responseStart value of 0, due
// to the resource being cached, or a cross-origin resource
// being served without a Timing-Origin-Allow header set.
// being served without a Timing-Allow-Origin header set.
if (entry.responseStart > 0) {
console.log(`TTFB: ${entry.responseStart}`, entry.name);
}
Expand Down

0 comments on commit ed53ffa

Please sign in to comment.