Skip to content

Commit

Permalink
Ellipse Parameter Syntax Error (#14)
Browse files Browse the repository at this point in the history
removed comma
  • Loading branch information
mac303 authored Jan 19, 2024
1 parent 7238a60 commit e18a6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftSVG/Ellipse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public struct Ellipse: Element {

// MARK: - CustomStringConvertible
public var description: String {
let desc = "<ellipse cx=\"\(x)\" cy=\"\(y)\" rx=\"\(rx)\", ry=\"\(ry)\""
let desc = "<ellipse cx=\"\(x)\" cy=\"\(y)\" rx=\"\(rx)\" ry=\"\(ry)\""
return desc + " \(attributeDescription) />"
}
}
Expand Down

0 comments on commit e18a6c9

Please sign in to comment.