Fix typo in error message
authorFabian Fichter <ianfab@users.noreply.github.com>
Fri, 9 Oct 2020 21:13:00 +0000 (23:13 +0200)
committerFabian Fichter <ianfab@users.noreply.github.com>
Fri, 9 Oct 2020 21:13:00 +0000 (23:13 +0200)
src/xboard.cpp

index c4f9c1d..495b91a 100644 (file)
@@ -386,7 +386,7 @@ void StateMachine::process_command(Position& pos, std::string token, std::istrin
       if ((m = UCI::to_move(pos, token)) != MOVE_NONE)
           do_move(pos, moveList, states, m);
       else
-          sync_cout << "Error (unkown command): " << token << sync_endl;
+          sync_cout << "Error (unknown command): " << token << sync_endl;
       if (Options["UCI_AnalyseMode"])
           go(pos, analysisLimits, states);
       else if (pos.side_to_move() == playColor)