File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed
Sources/ComposableArchitecture Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,11 @@ public struct Produced<Value>: SignalProducerConvertible {
210
210
}
211
211
}
212
212
213
- @available ( * , deprecated, message: """
213
+ @available (
214
+ * , deprecated,
215
+ message:
216
+ """
214
217
Consider using `Produced<State>` instead, this typealias is added for backward compatibility and will be removed in the next major release.
215
- """ )
218
+ """
219
+ )
216
220
public typealias StoreProducer < State> = Produced < State >
Original file line number Diff line number Diff line change @@ -45,10 +45,14 @@ import SwiftUI
45
45
public final class ViewStore < State, Action> : ObservableObject {
46
46
/// A producer of state.
47
47
public let produced : Produced < State >
48
-
49
- @available ( * , deprecated, message: """
48
+
49
+ @available (
50
+ * , deprecated,
51
+ message:
52
+ """
50
53
Consider using `.produced` instead, this variable is added for backward compatibility and will be removed in the next major release.
51
- """ )
54
+ """
55
+ )
52
56
public var producer : StoreProducer < State > { produced }
53
57
54
58
/// Initializes a view store from a store.
You can’t perform that action at this time.
0 commit comments