Skip to content

Commit fb82284

Browse files
mbrandonwgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent 69011b6 commit fb82284

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

Sources/ComposableArchitecture/Effect.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ extension Effect {
8282
/// - fileID: The fileID.
8383
/// - filePath: The filePath.
8484
/// - line: The line.
85-
/// - column: The column.
85+
/// - column: The column.
8686
/// - Returns: An effect wrapping the given asynchronous work.
8787
public static func run(
8888
priority: TaskPriority? = nil,

Sources/ComposableArchitecture/Observation/NavigationStack+Observation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ extension NavigationLink where Destination == Never {
233233
/// - fileID: The fileID.
234234
/// - filePath: The filePath.
235235
/// - line: The line.
236-
/// - column: The column.
236+
/// - column: The column.
237237
#if compiler(>=6)
238238
@MainActor
239239
#endif

Sources/ComposableArchitecture/Observation/Store+Observation.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ extension Binding {
160160
/// - fileID: The fileID.
161161
/// - filePath: The filePath.
162162
/// - line: The line.
163-
/// - column: The column.
163+
/// - column: The column.
164164
/// - Returns: A binding of an optional child store.
165165
#if swift(>=5.10)
166166
@preconcurrency@MainActor
@@ -321,7 +321,7 @@ extension Perception.Bindable {
321321
/// - fileID: The fileID.
322322
/// - filePath: The filePath.
323323
/// - line: The line.
324-
/// - column: The column.
324+
/// - column: The column.
325325
/// - Returns: A binding of an optional child store.
326326
public func scope<State: ObservableState, Action, ChildState, ChildAction>(
327327
state: KeyPath<State, ChildState?>,

Sources/ComposableArchitecture/Reducer/Reducers/ForEachReducer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ extension Reducer {
113113
/// - fileID: The fileID.
114114
/// - filePath: The filePath.
115115
/// - line: The line.
116-
/// - column: The column.
116+
/// - column: The column.
117117
/// - Returns: A reducer that combines the child reducer with the parent reducer.
118118
@inlinable
119119
@warn_unqualified_access

Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ extension Reducer {
5252
/// - fileID: The fileID.
5353
/// - filePath: The filePath.
5454
/// - line: The line.
55-
/// - column: The column.
55+
/// - column: The column.
5656
/// - Returns: A reducer that combines the child reducer with the parent reducer.
5757
@inlinable
5858
@warn_unqualified_access

Sources/ComposableArchitecture/Reducer/Reducers/IfLetReducer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ extension Reducer {
5252
/// - fileID: The fileID.
5353
/// - filePath: The filePath.
5454
/// - line: The line.
55-
/// - column: The column.
55+
/// - column: The column.
5656
/// - Returns: A reducer that combines the child reducer with the parent reducer.
5757
@inlinable
5858
@warn_unqualified_access

Sources/ComposableArchitecture/Reducer/Reducers/PresentationReducer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ extension Reducer {
403403
/// - fileID: The fileID.
404404
/// - filePath: The filePath.
405405
/// - line: The line.
406-
/// - column: The column.
406+
/// - column: The column.
407407
/// - Returns: A reducer that combines the child reducer with the parent reducer.
408408
@warn_unqualified_access
409409
@inlinable

Sources/ComposableArchitecture/Reducer/Reducers/Scope.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ public struct Scope<ParentState, ParentAction, Child: Reducer>: Reducer {
227227
/// - fileID: The fileID.
228228
/// - filePath: The filePath.
229229
/// - line: The line.
230-
/// - column: The column.
230+
/// - column: The column.
231231
@inlinable
232232
public init<ChildState, ChildAction>(
233233
state toChildState: CaseKeyPath<ParentState, ChildState>,

Sources/ComposableArchitecture/Reducer/Reducers/StackReducer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ extension Reducer {
372372
/// - fileID: The fileID.
373373
/// - filePath: The filePath.
374374
/// - line: The line.
375-
/// - column: The column.
375+
/// - column: The column.
376376
/// - Returns: A reducer that combines the destination reducer with the parent reducer.
377377
@inlinable
378378
@warn_unqualified_access

Sources/ComposableArchitecture/SwiftUI/NavigationStackStore.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public struct NavigationStackStore<State, Action, Root: View, Destination: View>
4545
/// - fileID: The fileID.
4646
/// - filePath: The filePath.
4747
/// - line: The line.
48-
/// - column: The column.
48+
/// - column: The column.
4949
public init(
5050
_ store: Store<StackState<State>, StackAction<State, Action>>,
5151
@ViewBuilder root: () -> Root,
@@ -101,7 +101,7 @@ public struct NavigationStackStore<State, Action, Root: View, Destination: View>
101101
/// - fileID: The fileID.
102102
/// - filePath: The filePath.
103103
/// - line: The line.
104-
/// - column: The column.
104+
/// - column: The column.
105105
@_disfavoredOverload
106106
public init<D: View>(
107107
_ store: Store<StackState<State>, StackAction<State, Action>>,

0 commit comments

Comments
 (0)