Skip to content

Commit ff0e4e7

Browse files
authored
Restore original meaning
One change from #1638 changed the original meaning, so let's revert that.
1 parent ab020e8 commit ff0e4e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/ComposableArchitecture/ReducerProtocol.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
///
116116
/// At most one of these requirements should be implemented. If a conformance implements both
117117
/// requirements, only ``reduce(into:action:)-8yinq`` will be called by the ``Store``. If your
118-
/// reducer assembles a body from other reducers _and_ has additional business logic, it needs to
118+
/// reducer assembles a body from other reducers _and_ has additional business logic it needs to
119119
/// layer onto the feature, introduce this logic into the body instead, either with ``Reduce``:
120120
///
121121
/// ```swift
@@ -205,7 +205,7 @@
205205
/// > Important: if your reducer implements the ``reduce(into:action:)-8yinq`` method, it will
206206
/// > take precedence over this property, and only ``reduce(into:action:)-8yinq`` will be called
207207
/// > by the ``Store``. If your reducer assembles a body from other reducers and has additional
208-
/// > business logic, it needs to layer into the system, introduce this logic into the body
208+
/// > business logic it needs to layer into the system, introduce this logic into the body
209209
/// > instead, either with ``Reduce``, or with a separate, dedicated conformance.
210210
@ReducerBuilder<State, Action>
211211
var body: Body { get }
@@ -227,7 +227,7 @@
227227
///
228228
/// At most one of these requirements should be implemented. If a conformance implements both
229229
/// requirements, only ``reduce(into:action:)-8yinq`` will be called by the ``Store``. If your
230-
/// reducer assembles a body from other reducers _and_ has additional business logic, it needs to
230+
/// reducer assembles a body from other reducers _and_ has additional business logic it needs to
231231
/// layer onto the feature, introduce this logic into the body instead, either with ``Reduce``:
232232
///
233233
/// ```swift
@@ -315,7 +315,7 @@
315315
/// > Important: if your reducer implements the ``reduce(into:action:)-8yinq`` method, it will
316316
/// > take precedence over this property, and only ``reduce(into:action:)-8yinq`` will be called
317317
/// > by the ``Store``. If your reducer assembles a body from other reducers and has additional
318-
/// > business logic, it needs to layer into the system, introduce this logic into the body
318+
/// > business logic it needs to layer into the system, introduce this logic into the body
319319
/// > instead, either with ``Reduce``, or with a separate, dedicated conformance.
320320
@ReducerBuilder<State, Action>
321321
var body: Body { get }

0 commit comments

Comments
 (0)