Skip to content

Commit

Permalink
Update System.js
Browse files Browse the repository at this point in the history
  • Loading branch information
withinJoel authored Oct 16, 2024
1 parent 639e1c0 commit 251a0d0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Modules/System.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,9 @@ function whatIsCommand(input) {

// Use echo to display the meaning or a message if the command is not found
if (meaning) {
echo(command + ":" + meaning);
console.log(command + ":" + meaning);
echo(command + ": " + meaning);
} else {
echo(`Command '${command}' not found.`);
console.log(`Command '${command}' not found.`);
}
}

Expand Down

0 comments on commit 251a0d0

Please sign in to comment.