Skip to content

Commit

Permalink
remove extraneous full stops / periods from comment (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
coliff authored and addyosmani committed Jul 20, 2019
1 parent dc02d33 commit 23737af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prefetch.mjs
Expand Up @@ -102,7 +102,7 @@ function prefetcher(url, isPriority, conn) {
}

if (conn = navigator.connection) {
// Don't prefetch if the user is on 2G. or if Save-Data is enabled..
// Don't prefetch if the user is on 2G or if Save-Data is enabled.
if ((conn.effectiveType || '').includes('2g') || conn.saveData) return;
}

Expand Down

0 comments on commit 23737af

Please sign in to comment.