Skip to content

Commit dd72229

Browse files
committed
Fixed formatting
1 parent 66223aa commit dd72229

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Sources/VexilMacros/Utilities/SimpleVariables.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ extension MemberBlockSyntax {
4040
return false
4141

4242
case let .accessors(accessors):
43-
return accessors.allSatisfy({ $0.accessorSpecifier.tokenKind != .keyword(.get) })
43+
return accessors.allSatisfy { $0.accessorSpecifier.tokenKind != .keyword(.get) }
4444
}
4545
}
4646
}

Tests/VexilMacroTests/EquatableFlagContainerMacroTests.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ final class EquatableFlagContainerMacroTests: XCTestCase {
6464
struct TestFlags {
6565
@Flag(default: false, description: "Some Flag")
6666
var someFlag: Bool
67-
67+
6868
var someComputedNotEquatableProperty: (any Error)? {
6969
nil
7070
}
71-
71+
7272
var someComputedPropertyWithAGetter: (any Error)? {
7373
get { fatalError() }
7474
set { fatalError() }
7575
}
76-
76+
7777
var otherStoredProperty: Int {
7878
didSet { fatalError() }
7979
}
@@ -98,16 +98,16 @@ final class EquatableFlagContainerMacroTests: XCTestCase {
9898
lookup: _flagLookup
9999
)
100100
}
101-
101+
102102
var someComputedNotEquatableProperty: (any Error)? {
103103
nil
104104
}
105-
105+
106106
var someComputedPropertyWithAGetter: (any Error)? {
107107
get { fatalError() }
108108
set { fatalError() }
109109
}
110-
110+
111111
var otherStoredProperty: Int {
112112
didSet { fatalError() }
113113
}

0 commit comments

Comments
 (0)