From 1b737755c9f4d6d84e2d8c261d5f3fbb8da96fee Mon Sep 17 00:00:00 2001
From: Kelvin Ly <kelvin.ly1618@gmail.com>
Date: Thu, 11 May 2023 14:35:33 -0400
Subject: [PATCH] Minor wording changes

---
 wordle.htm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/wordle.htm b/wordle.htm
index 42713fc..322c3da 100644
--- a/wordle.htm
+++ b/wordle.htm
@@ -104,8 +104,8 @@ var chosen_words = [];
         return
       }
       const [idx, entropy] = calc_best_word(valid_words)
-      status("best word is " + words[idx] + " , " + entropy)
-      log("best word " + words[idx] + " , " + entropy)
+      status("best word is " + words[idx] + " , " + entropy + " bits")
+      log("best word " + words[idx] + " , " + entropy + " bits")
     })
 
     document.getElementById('submit').addEventListener('click', e => {
@@ -252,6 +252,6 @@ var chosen_words = [];
     <p>1. Initialize the solver by pressing the Initialize button. This causes it to precompute this large (~220 MB) array of values</p>
     <p>2. Use "Find best" to choose a word for you or enter in your own choice of word, and press Submit word. Submit this word in Wordle as well</p>
     <p>3. Click on the letters of the word to match the results of what was matching according to Wordle. Hit confirm when it matches the colors of the word in Wordle. This will cause the solver to eliminate words that are no longer possible. If there was an error in the color pattern you can hit Back to remove the last confirmed word, and reenter it. </p>
-    <p>4. Repeat steps 2 and 3 until you win, which should be in around 4 steps</p>
+    <p>4. Optimally win Wordle. </p>
   </body>
 </html>