Skip to content

Commit 6e86382

Browse files
committed
wip
1 parent 5bb94f1 commit 6e86382

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Sources/ComposableArchitecture/Store.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ import SwiftUI
9292
/// Instead, stores should be observed through Swift's Observation framework (or the Perception
9393
/// package when targeting iOS <17) by applying the ``ObservableState()`` macro to your feature's
9494
/// state.
95-
9695
@dynamicMemberLookup
9796
#if swift(<5.10)
9897
@MainActor(unsafe)
@@ -322,7 +321,7 @@ public final class Store<State, Action>: _Store {
322321
}
323322

324323
private init(core: some Core<State, Action>, scopeID: AnyHashable?, parent: (any _Store)?) {
325-
defer { Logger.shared.log( "\(storeTypeName(of: self)).init") }
324+
defer { Logger.shared.log("\(storeTypeName(of: self)).init") }
326325
self.core = core
327326
self.parent = parent
328327
self.scopeID = scopeID

0 commit comments

Comments
 (0)