Skip to content

Commit 1aca801

Browse files
mbrandonwgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent 2d0590b commit 1aca801

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Sources/ComposableArchitecture/Internal/KeyPath+Sendable.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
public typealias _SendableAnyKeyPath = any AnyKeyPath & Sendable
33
public typealias _SendablePartialKeyPath<Root> = any PartialKeyPath<Root> & Sendable
44
public typealias _SendableKeyPath<Root, Value> = any KeyPath<Root, Value> & Sendable
5-
public typealias _SendableWritableKeyPath<Root, Value> = any WritableKeyPath<Root, Value> & Sendable
5+
public typealias _SendableWritableKeyPath<Root, Value> = any WritableKeyPath<Root, Value>
6+
& Sendable
67
public typealias _SendableReferenceWritableKeyPath<Root, Value> = any ReferenceWritableKeyPath<
78
Root, Value
89
>
@@ -14,7 +15,9 @@
1415
public typealias _SendablePartialKeyPath<Root> = PartialKeyPath<Root>
1516
public typealias _SendableKeyPath<Root, Value> = KeyPath<Root, Value>
1617
public typealias _SendableWritableKeyPath<Root, Value> = WritableKeyPath<Root, Value>
17-
public typealias _SendableReferenceWritableKeyPath<Root, Value> = ReferenceWritableKeyPath<Root, Value>
18+
public typealias _SendableReferenceWritableKeyPath<Root, Value> = ReferenceWritableKeyPath<
19+
Root, Value
20+
>
1821
public typealias _SendablePartialCaseKeyPath<Root> = PartialCaseKeyPath<Root>
1922
public typealias _SendableCaseKeyPath<Root, Value> = CaseKeyPath<Root, Value>
2023
#endif

Tests/ComposableArchitectureTests/EffectTests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ final class EffectTests: BaseTCATestCase {
5050
await withMainSerialExecutor {
5151
let values = LockIsolated<[Int]>([])
5252

53-
5453
let effect = Effect<Int>.concatenate(
5554
.publisher { Just(1).delay(for: 1, scheduler: self.mainQueue) }
5655
)

0 commit comments

Comments
 (0)