diff --git a/src/prefetch.mjs b/src/prefetch.mjs index 0a52da8e..18b43c17 100644 --- a/src/prefetch.mjs +++ b/src/prefetch.mjs @@ -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; }