Skip to content

Commit

Permalink
Comment fix in app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kyletimmermans committed Feb 28, 2024
1 parent cfdfbab commit fe73e79
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,16 +354,14 @@ const verb = () => {
.catch((error) => console.error("Error loading JSON:", error))
.finally(() => {
fetchList.push("verb");
// Possibly no data like present tense быть

let q = randomVerb(jsonVerb);
document.getElementById("question").innerHTML = q[2]+" ____ <b>"+q[0]
+"</b> (\""+q[4]+"\") ("
+q[1]+")";
correctAnswer = q[3];
});
} else {
// If already fetched
// Possibly no data like present tense быть
} else { // If already fetched
let q = randomVerb(jsonVerb);
document.getElementById("question").innerHTML = q[2]+" ____ <b>"+q[0]
+"</b> (\""+q[4]+"\") ("
Expand Down

0 comments on commit fe73e79

Please sign in to comment.