File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Sources/SwiftBuildSupport Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ fileprivate struct DotPIFSerializer {
78
78
func write( _ object: String ) { outputStream. write ( " \( object) \n " ) }
79
79
80
80
write ( " digraph PIF { " )
81
- write ( " dpi=400; " ) // i.e., MacBook Pro 16" is 226 pixels per inch (3072 x 1920).
81
+ write ( " dpi=400;" ) // i.e., MacBook Pro 16" is 226 pixels per inch (3072 x 1920).
82
82
for object in objects {
83
83
write ( " \( object) ; " )
84
84
}
@@ -107,7 +107,7 @@ fileprivate struct DotPIFSerializer {
107
107
if let style { attributes. append ( " style= \( style) " ) }
108
108
if let margin { attributes. append ( " margin= \( margin) " ) }
109
109
110
- var node = " \( id. quote) "
110
+ var node = " \( id. quote) "
111
111
if !attributes. isEmpty {
112
112
let attributesList = attributes. joined ( separator: " , " )
113
113
node += " [ \( attributesList) ] "
@@ -126,7 +126,7 @@ fileprivate struct DotPIFSerializer {
126
126
if let color { attributes. append ( " color= \( color) " ) }
127
127
if let style { attributes. append ( " style= \( style) " ) }
128
128
129
- var edge = " \( left. quote) -> \( right. quote) "
129
+ var edge = " \( left. quote) -> \( right. quote) "
130
130
if !attributes. isEmpty {
131
131
let attributesList = attributes. joined ( separator: " , " )
132
132
edge += " [ \( attributesList) ] "
You can’t perform that action at this time.
0 commit comments