From 9187ca5585aa12e13465930e38b46c0f3a3d81e1 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Sun, 11 Aug 2024 17:54:51 -0700 Subject: [PATCH] s/complete/completed --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e5dc664..4f9b840 100644 --- a/index.html +++ b/index.html @@ -190,10 +190,10 @@ if (counts["undefined"] == 0) { if (openCount == 0) { - notice.textContent = "✅ Test complete in " + elapsed + " seconds; everything looks OK" + notice.textContent = "✅ Test completed in " + elapsed + " seconds; everything looks OK" clearInterval(window.tableInterval) } else { - notice.textContent = "⚠️ Test complete in " + elapsed + " seconds; " + openCount + " open port" + ((openCount == 1) ? "" : "s") + " found" + notice.textContent = "⚠️ Test completed in " + elapsed + " seconds; " + openCount + " open port" + ((openCount == 1) ? "" : "s") + " found" clearInterval(window.tableInterval) } } else {