Skip to content

Commit 2e2f466

Browse files
authored
Aligned documentation with the implementation (#186)
Co-authored-by: Noah McCann <>
1 parent 88c8a74 commit 2e2f466

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/ComposableArchitecture/Reducer.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public struct Reducer<State, Action, Environment> {
5656
Self { _, _, _ in .none }
5757
}
5858

59-
/// Combines many reducers into a single one by running each one on the state, and concatenating
59+
/// Combines many reducers into a single one by running each one on the state, and merging
6060
/// all of the effects.
6161
///
6262
/// - Parameter reducers: A list of reducers.
@@ -66,7 +66,7 @@ public struct Reducer<State, Action, Environment> {
6666
}
6767

6868
/// Combines an array of reducers into a single one by running each one on the state, and
69-
/// concatenating all of the effects.
69+
/// merging all of the effects.
7070
///
7171
/// - Parameter reducers: An array of reducers.
7272
/// - Returns: A single reducer.
@@ -77,7 +77,7 @@ public struct Reducer<State, Action, Environment> {
7777
}
7878

7979
/// Combines the current reducer with another given reducer by running each one on the state,
80-
/// and concatenating their effects.
80+
/// and merging their effects.
8181
///
8282
/// - Parameter other: Another reducer.
8383
/// - Returns: A single reducer.

0 commit comments

Comments
 (0)