We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f0ba7 commit 9b2f4dcCopy full SHA for 9b2f4dc
1 file changed
Sources/Signal.swift
@@ -238,9 +238,6 @@ extension Signal where Error == Swift.Error {
238
}
239
240
241
-
242
-#if !XCFRAMEWORK
243
244
extension Signal where Error == Never {
245
246
/// Create a new signal by awaiting an async closure.
@@ -254,7 +251,12 @@ extension Signal where Error == Never {
254
251
return BlockDisposable(task.cancel)
255
252
256
253
+}
257
+#if !XCFRAMEWORK
+
258
+extension Signal where Error == Never {
259
260
/// Create a new signal and assign its next element observer to the given variable.
261
/// Calling the closure assigned to the varaible will send the next element on the signal.
262
///
0 commit comments