Skip to content

Commit 0844d45

Browse files
authored
Merge pull request #88 from cdmain/main
Minor fixes
2 parents cd35b47 + 31ebaa4 commit 0844d45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/project-files/word-masters.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const ROUNDS = 6;
33
const letters = document.querySelectorAll(".scoreboard-letter");
44
const loadingDiv = document.querySelector(".info-bar");
55

6-
// I like to do an init function so I can use "await"
6+
// I like to do an async init function so I can use "await"
77
async function init() {
88
// the state for the app
99
let currentRow = 0;
@@ -31,7 +31,7 @@ async function init() {
3131
letter;
3232
}
3333

34-
// use tries to enter a guess
34+
// user tries to enter a guess
3535
async function commit() {
3636
if (currentGuess.length !== ANSWER_LENGTH) {
3737
// do nothing

0 commit comments

Comments
 (0)