summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-04-19 09:44:16 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-04-19 09:44:16 +0800
commite6922ca8eb33974720cc4a0f6832999940f4e3c8 (patch)
tree6e41fb68bae5b561705e1e93d3c143310fc0384f
parentec6c84f30c4b65ea691065e906575908648988ca (diff)
Reflect word deletions in index.*
-rw-r--r--index.html2
-rw-r--r--index.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html
index 4f02969..2e2c060 100644
--- a/index.html
+++ b/index.html
@@ -83,7 +83,7 @@
<details>
<summary>How many words are there?</summary>
<p>
- <strong>1005.</strong>
+ <strong>1003.</strong>
You can see a full list <a href="words.html">here</a>.
</p>
<p>Whether or not this is a lot is left as an exercise for the reader.</p>
diff --git a/index.js b/index.js
index c201ba9..41ef5ad 100644
--- a/index.js
+++ b/index.js
@@ -18,7 +18,7 @@ let songsPicked = 0;
function newWord() {
if (WORDS.length == 0) {
// what the hell
- // why would anyone click Next 1005 times
+ // why would anyone click Next 1002 times
wordElem.innerHTML = "There are no more words."
return;
}