From 14a5505381a50b8293d693450f372bb89636f685 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Sat, 13 Jul 2019 16:32:39 +0900 Subject: [PATCH] remove extraneous full stops / periods from comment --- src/prefetch.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }