File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Sources/ComposableArchitecture Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -332,12 +332,11 @@ public final class Store<State, Action> {
332332
333333 @_spi ( Internals)
334334 public func scope< ChildState, ChildAction> (
335- id: ScopeID < State , Action > ? ,
336- state: ToState < State , ChildState > ,
337- action fromChildAction: @escaping ( ChildAction ) -> Action ,
338- isInvalid: ( ( State ) -> Bool ) ?
339- ) -> Store < ChildState , ChildAction >
340- {
335+ id: ScopeID < State , Action > ? ,
336+ state: ToState < State , ChildState > ,
337+ action fromChildAction: @escaping ( ChildAction ) -> Action ,
338+ isInvalid: ( ( State ) -> Bool ) ?
339+ ) -> Store < ChildState , ChildAction > {
341340 if self . canCacheChildren,
342341 let id = id,
343342 let childStore = self . children [ id] as? Store < ChildState , ChildAction >
You can’t perform that action at this time.
0 commit comments