From: Fabian Fichter Date: Fri, 9 Oct 2020 21:13:00 +0000 (+0200) Subject: Fix typo in error message X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=d825bd71ff4ece390d1cfcd4491da97f4591c899;p=fairystockfish.git Fix typo in error message --- diff --git a/src/xboard.cpp b/src/xboard.cpp index c4f9c1d..495b91a 100644 --- a/src/xboard.cpp +++ b/src/xboard.cpp @@ -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)