From d56e777025f3bda29feaec22c125b0e7ab975e0c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Dec 2025 16:52:57 +0100 Subject: Format, make map equatable --- Sources/WmapParser/DataStructures/Dependency.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Sources/WmapParser/DataStructures/Dependency.swift') 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 + } } -- cgit