From b896e8a82ee920a620944c31a2309565a075fcf6 Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Fri, 28 Feb 2020 22:58:52 +0000 Subject: [PATCH] Typo fix --- terminal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.php b/terminal.php index 08af48a..2a7cf2b 100644 --- a/terminal.php +++ b/terminal.php @@ -35,7 +35,7 @@ key = function(e) { commandHistory[commandHistory.length-1] = "[[ICEcoder]]:"+currentCommand; } } - // If ee have at least some items in history, step back a level and display the previous command + // If we have at least some items in history, step back a level and display the previous command if (currentLine > 0) { currentLine--; document.getElementById('command').value = commandHistory[currentLine].replace("[[ICEcoder]]:","");