diff --git a/CCallback.cpp b/CCallback.cpp index d7917b870..d902a9842 100644 --- a/CCallback.cpp +++ b/CCallback.cpp @@ -96,7 +96,7 @@ bool CCallback::upgradeCreature(const CArmedInstance *obj, int stackPos, int new } void CCallback::endTurn() { - tlog5 << "Player " << (unsigned)player << " end his turn." << std::endl; + tlog5 << "Player " << (unsigned)player << " ended his turn." << std::endl; EndTurn pack; sendRequest(&pack); //report that we ended turn } diff --git a/global.h b/global.h index 0f9a4f574..ee3bce556 100644 --- a/global.h +++ b/global.h @@ -318,7 +318,7 @@ extern DLL_EXPORT CLogger<3> tlog3; //yellow - minor warnings extern DLL_EXPORT CLogger<4> tlog4; //white - detailed log info extern DLL_EXPORT CLogger<5> tlog5; //gray - minor log info -//XXX pls dont - 'debug macros' are usually more trubble then its worth +//XXX pls dont - 'debug macros' are usually more trouble than it's worth #define HANDLE_EXCEPTION \ catch (const std::exception& e) { \ tlog1 << e.what() << std::endl; \