Another spelling fix in a comment.

This commit is contained in:
fendrin 2013-06-23 14:55:05 +02:00
parent c6cc96f09e
commit c7143a71ba

View file

@ -631,7 +631,7 @@ unit::~unit()
*/
unit& unit::operator=(const unit& u)
{
// Use copy constructor to make sure we are coherant
// Use copy constructor to make sure we are coherent
if (this != &u) {
this->~unit();
new (this) unit(u) ;