aboutsummaryrefslogtreecommitdiff
path: root/Sources/WmapParser/DataStructures/Dependency.swift
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2025-12-14 16:52:57 +0100
committerRuben Beltran del Rio <jj@r.bdr.sh>2025-12-14 17:05:21 +0100
commitd56e777025f3bda29feaec22c125b0e7ab975e0c (patch)
tree19295b051c9e32c17e32a4954fc0cdca3d4e0be5 /Sources/WmapParser/DataStructures/Dependency.swift
parent0b90075f76b6f2df77c01c303322323b1395641a (diff)
Format, make map equatable
Diffstat (limited to 'Sources/WmapParser/DataStructures/Dependency.swift')
-rw-r--r--Sources/WmapParser/DataStructures/Dependency.swift12
1 files changed, 6 insertions, 6 deletions
diff --git a/Sources/WmapParser/DataStructures/Dependency.swift b/Sources/WmapParser/DataStructures/Dependency.swift
index 5f0089c..c2f4163 100644
--- a/Sources/WmapParser/DataStructures/Dependency.swift
+++ b/Sources/WmapParser/DataStructures/Dependency.swift
@@ -1,8 +1,8 @@
extension WmapParser {
-/// A dependency between two components.
-public struct Dependency: Sendable, Equatable {
- public let fromComponent: String
- public let toComponent: String
- public let isDirected: Bool
-}
+ /// A dependency between two components.
+ public struct Dependency: Sendable, Equatable {
+ public let fromComponent: String
+ public let toComponent: String
+ public let isDirected: Bool
+ }
}