mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-10 06:34:01 +00:00
svg_loader: typo fixed
_svgLoaderParerXmlClose -> _svgLoaderParserXmlClose
This commit is contained in:
parent
2f7e7e9923
commit
d3053777a8
1 changed files with 2 additions and 2 deletions
|
@ -2380,7 +2380,7 @@ static constexpr struct
|
|||
};
|
||||
|
||||
|
||||
static void _svgLoaderParerXmlClose(SvgLoaderData* loader, const char* content)
|
||||
static void _svgLoaderParserXmlClose(SvgLoaderData* loader, const char* content)
|
||||
{
|
||||
content = _skipSpace(content, nullptr);
|
||||
|
||||
|
@ -2488,7 +2488,7 @@ static bool _svgLoaderParser(void* data, SimpleXMLType type, const char* content
|
|||
break;
|
||||
}
|
||||
case SimpleXMLType::Close: {
|
||||
_svgLoaderParerXmlClose(loader, content);
|
||||
_svgLoaderParserXmlClose(loader, content);
|
||||
break;
|
||||
}
|
||||
case SimpleXMLType::Data:
|
||||
|
|
Loading…
Add table
Reference in a new issue