Skip to content

Commit e18a6c9

Browse files
authored
Ellipse Parameter Syntax Error (#14)
removed comma
1 parent 7238a60 commit e18a6c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftSVG/Ellipse.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public struct Ellipse: Element {
6666

6767
// MARK: - CustomStringConvertible
6868
public var description: String {
69-
let desc = "<ellipse cx=\"\(x)\" cy=\"\(y)\" rx=\"\(rx)\", ry=\"\(ry)\""
69+
let desc = "<ellipse cx=\"\(x)\" cy=\"\(y)\" rx=\"\(rx)\" ry=\"\(ry)\""
7070
return desc + " \(attributeDescription) />"
7171
}
7272
}

0 commit comments

Comments
 (0)