diff --git a/serpiente/index.html b/serpiente/index.html index e9bba17..7175017 100644 --- a/serpiente/index.html +++ b/serpiente/index.html @@ -11,7 +11,7 @@
-
Puntaje: 0
+
Puntuación: 0
diff --git a/serpiente/script.js b/serpiente/script.js index fed2014..68c84d3 100644 --- a/serpiente/script.js +++ b/serpiente/script.js @@ -106,7 +106,7 @@ function changeDirection(e) { function endGame() { clearInterval(gameInterval); gameOver = true; - gameOverDiv.textContent = "¡Fin del juego! Puntaje final: " + score; + gameOverDiv.textContent = "¡Fin del juego! Puntuación final: " + score; } window.addEventListener('keydown', changeDirection);