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 {
210210 }
211211}
212212
213- @available ( * , deprecated, message: """
213+ @available (
214+ * , deprecated,
215+ message:
216+ """
214217Consider using `Produced<State>` instead, this typealias is added for backward compatibility and will be removed in the next major release.
215- """ )
218+ """
219+ )
216220public typealias StoreProducer < State> = Produced < State >
Original file line number Diff line number Diff line change @@ -45,10 +45,14 @@ import SwiftUI
4545public 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.
You can’t perform that action at this time.
0 commit comments