Skip to content

Commit

Permalink
removed comma
Browse files Browse the repository at this point in the history
  • Loading branch information
mac303 committed Jan 19, 2024
1 parent 7238a60 commit 957e4e9
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 957e4e9

Please sign in to comment.