diff --git a/Sources/SVGEngine.mm b/Sources/SVGEngine.mm index 07c97ae..7caf6fe 100755 --- a/Sources/SVGEngine.mm +++ b/Sources/SVGEngine.mm @@ -442,7 +442,7 @@ @interface SVGAttributeSet () { } /// This parses a single isolated path. creating a cgpath from just a string formatted like the d element in a path -CGPathRef CGPathFromSVGPathString(NSString *svgString) { +CGPathRef CGPathCreateFromSVGPathString(NSString *svgString) { CGPathRef const path = pathDefinitionParser(svgString).parse(); if(!path) { NSLog(@"*** Error: Invalid path attribute");