File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Sources/ComposableArchitecture Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 16
16
xcode :
17
17
- ' 12.4'
18
18
- ' 12.5.1'
19
- - ' 13.2'
19
+ - ' 13.2.1 '
20
20
steps :
21
21
- uses : actions/checkout@v2
22
22
- name : Select Xcode ${{ matrix.xcode }}
34
34
strategy :
35
35
matrix :
36
36
xcode :
37
- - ' 13.2'
37
+ - ' 13.2.1 '
38
38
steps :
39
39
- uses : actions/checkout@v2
40
40
- name : Select Xcode ${{ matrix.xcode }}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ extension Effect {
29
29
. deferred { ( ) -> SignalProducer < Value , Error > in
30
30
work ( )
31
31
return . empty
32
- }
32
+ }
33
33
}
34
34
35
35
/// Concatenates a variadic list of effects together into a single effect, which runs the effects
@@ -111,7 +111,7 @@ extension Effect {
111
111
observer. send ( error: error)
112
112
}
113
113
}
114
- }
114
+ }
115
115
}
116
116
117
117
/// Initializes an effect that lazily executes some work in the real world and synchronously sends
@@ -142,7 +142,7 @@ extension Effect {
142
142
public static func result( _ attemptToFulfill: @escaping ( ) -> Result < Value , Error > ) -> Self {
143
143
Effect { ( ) -> Result < Value , Error > in
144
144
attemptToFulfill ( )
145
- }
145
+ }
146
146
}
147
147
148
148
/// Turns any `SignalProducer` into an ``Effect`` that cannot fail by wrapping its output and failure in
@@ -167,7 +167,8 @@ extension Effect {
167
167
/// Turns any `SignalProducer` into an ``Effect`` that cannot fail by wrapping its output and failure into
168
168
/// result and then applying passed in function to it.
169
169
///
170
- /// This is a convenience operator for writing `catchToEffect()` followed by a `map()` .
170
+ /// This is a convenience operator for writing ``Effect/catchToEffect()`` followed by a
171
+ /// ``Effect/map(_:)``.
171
172
///
172
173
/// ```swift
173
174
/// case .buttonTapped:
You can’t perform that action at this time.
0 commit comments