Public: Fix typo in inline script comment
This commit is contained in:
parent
0f9b3ea798
commit
f3bc8d3b5f
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@
|
||||||
|
|
||||||
const response = await fetch(window.location.href);
|
const response = await fetch(window.location.href);
|
||||||
const text = (await response.text())
|
const text = (await response.text())
|
||||||
// NOTE: This removes <link rel="me" href="some-ressource"> tags from the document so the head
|
// NOTE: This removes <link rel="me" href="some-resource"> tags from the document so the head
|
||||||
// doesn't get as cluttered.
|
// doesn't get as cluttered.
|
||||||
// FIXME: Change this to use a more sophisticated api once tree construction is implemented.
|
// FIXME: Change this to use a more sophisticated api once tree construction is implemented.
|
||||||
.split('\n')
|
.split('\n')
|
||||||
|
|
|
@ -104,7 +104,7 @@
|
||||||
const request = new XMLHttpRequest();
|
const request = new XMLHttpRequest();
|
||||||
request.addEventListener("load", async function() {
|
request.addEventListener("load", async function() {
|
||||||
const text = this.responseText
|
const text = this.responseText
|
||||||
// NOTE: This removes <link rel="me" href="some-ressource"> tags from the document so the head
|
// NOTE: This removes <link rel="me" href="some-resource"> tags from the document so the head
|
||||||
// doesn't get as cluttered.
|
// doesn't get as cluttered.
|
||||||
// FIXME: Change this to use a more sophisticated api once tree construction is implemented.
|
// FIXME: Change this to use a more sophisticated api once tree construction is implemented.
|
||||||
.split('\n')
|
.split('\n')
|
||||||
|
|
Loading…
Reference in a new issue