Skip to content

Commit

Permalink
edit js file
Browse files Browse the repository at this point in the history
  • Loading branch information
kderev committed Feb 18, 2025
1 parent e75272a commit fa29fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rockpaperscissors.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function playRound(humanChoice, computerChoice) {
if (humanScore > computerScore) {
results.textContent = "Congrats, you beat a computer!";
} else {
results.textContent = "Well, you lost!";
results.textContent = "Well... you lost!";
}
humanScore = 0;
computerScore = 0;
Expand Down

0 comments on commit fa29fba

Please sign in to comment.