Skip to content

Commit 88d3150

Browse files
mluisbrownactions-user
authored andcommitted
Run swift-format
1 parent 7ac26c3 commit 88d3150

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

Sources/ComposableArchitecture/Store.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,11 @@ public struct Produced<Value>: SignalProducerConvertible {
210210
}
211211
}
212212

213-
@available(*, deprecated, message:"""
213+
@available(
214+
*, deprecated,
215+
message:
216+
"""
214217
Consider using `Produced<State>` instead, this typealias is added for backward compatibility and will be removed in the next major release.
215-
""")
218+
"""
219+
)
216220
public typealias StoreProducer<State> = Produced<State>

Sources/ComposableArchitecture/ViewStore.swift

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,14 @@ import SwiftUI
4545
public final class ViewStore<State, Action>: ObservableObject {
4646
/// A producer of state.
4747
public let produced: Produced<State>
48-
49-
@available(*, deprecated, message: """
48+
49+
@available(
50+
*, deprecated,
51+
message:
52+
"""
5053
Consider using `.produced` instead, this variable is added for backward compatibility and will be removed in the next major release.
51-
""")
54+
"""
55+
)
5256
public var producer: StoreProducer<State> { produced }
5357

5458
/// Initializes a view store from a store.

0 commit comments

Comments
 (0)