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')