Skip to content

Commit fc4c90c

Browse files
nmccannmluisbrown
authored andcommitted
Aligned documentation with the implementation (#186)
Co-authored-by: Noah McCann <>
1 parent 776c718 commit fc4c90c

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
@@ -55,7 +55,7 @@ public struct Reducer<State, Action, Environment> {
5555
Self { _, _, _ in .none }
5656
}
5757

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

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

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

0 commit comments

Comments
 (0)