From f3bc8d3b5f808c0937d44b0afb4c8dba3ae07d91 Mon Sep 17 00:00:00 2001 From: networkException Date: Mon, 19 Dec 2022 13:08:40 +0100 Subject: [PATCH] Public: Fix typo in inline script comment --- public/index.html | 2 +- public/xhr.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index f4a0960..81ed42f 100644 --- a/public/index.html +++ b/public/index.html @@ -103,7 +103,7 @@ const response = await fetch(window.location.href); const text = (await response.text()) - // NOTE: This removes tags from the document so the head + // NOTE: This removes tags from the document so the head // doesn't get as cluttered. // FIXME: Change this to use a more sophisticated api once tree construction is implemented. .split('\n') diff --git a/public/xhr.html b/public/xhr.html index a3384bd..4f9dcc6 100644 --- a/public/xhr.html +++ b/public/xhr.html @@ -104,7 +104,7 @@ const request = new XMLHttpRequest(); request.addEventListener("load", async function() { const text = this.responseText - // NOTE: This removes tags from the document so the head + // NOTE: This removes tags from the document so the head // doesn't get as cluttered. // FIXME: Change this to use a more sophisticated api once tree construction is implemented. .split('\n')