svg_loader: Fixed a typo

lenght ->length
This commit is contained in:
JunsuChoi 2020-10-29 17:48:09 +09:00 committed by Hermet Park
parent 9859a48714
commit dc822174e8

View file

@ -724,7 +724,7 @@ static bool _attrParseSvgNode(void* data, const char* key, const char* value)
SvgDocNode* doc = &(node->node.doc);
SvgLengthType type;
//@TODO handle lenght unit.
//TODO: handle length unit.
if (!strcmp(key, "width")) {
doc->w = _parseLength(value, &type);
} else if (!strcmp(key, "height")) {