Skip to content

Commit af4e878

Browse files
committed
Alternate description
1 parent abf4135 commit af4e878

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

20.rev.swift

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ extension Module: CustomStringConvertible {
2121
let id = inputs.joined(separator: "|")
2222
let od = outputs.joined(separator: "|")
2323
return [
24-
td,
25-
inputs.isEmpty ? nil : "inputs \(id)",
26-
outputs.isEmpty ? nil : "outputs \(od)"
27-
].compactMap({ $0 }).joined(separator: " ")
24+
inputs.isEmpty ? nil : "\(id)>", td, outputs.isEmpty ? nil : ">\(od)"
25+
].compactMap({ $0 }).joined(separator: "")
2826
}
2927
}
3028

0 commit comments

Comments
 (0)