mirror of https://github.com/axmolengine/axmol.git
Fix typo: unkown -> unknown
This commit is contained in:
parent
9e7ce0cd85
commit
d384f7ce1e
|
@ -609,7 +609,7 @@ ActionInterval* CCBAnimationManager::getEaseAction(ActionInterval *pAction, CCBK
|
|||
}
|
||||
else
|
||||
{
|
||||
log("CCBReader: Unkown easing type %d", static_cast<int>(easingType));
|
||||
log("CCBReader: Unknown easing type %d", static_cast<int>(easingType));
|
||||
return pAction;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -646,7 +646,7 @@ static void processResponse(HttpResponse* response, std::string& responseMessage
|
|||
HttpRequest::Type::PUT != requestType &&
|
||||
HttpRequest::Type::DELETE != requestType)
|
||||
{
|
||||
CCASSERT(true, "CCHttpClient: unkown request type, only GET、POST、PUT、DELETE are supported");
|
||||
CCASSERT(true, "CCHttpClient: unknown request type, only GET、POST、PUT、DELETE are supported");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -335,7 +335,7 @@ static void processResponse(HttpResponse* response, char* errorBuffer)
|
|||
break;
|
||||
|
||||
default:
|
||||
CCASSERT(true, "CCHttpClient: unkown request type, only GET and POSt are supported");
|
||||
CCASSERT(true, "CCHttpClient: unknown request type, only GET and POSt are supported");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
@ -405,7 +405,7 @@ static void processResponse(HttpResponse* response, char* errorBuffer)
|
|||
break;
|
||||
|
||||
default:
|
||||
CCASSERT(true, "CCHttpClient: unkown request type, only GET and POSt are supported");
|
||||
CCASSERT(true, "CCHttpClient: unknown request type, only GET and POSt are supported");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue