We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a5a4f9 commit bb2bab2Copy full SHA for bb2bab2
RxSwift/Schedulers/MainScheduler.swift
@@ -40,7 +40,7 @@ public final class MainScheduler : SerialDispatchQueueScheduler {
40
/// In case this method is called on a background thread it will throw an exception.
41
public class func ensureExecutingOnScheduler(errorMessage: String? = nil) {
42
if !DispatchQueue.isMain {
43
- rxFatalError(errorMessage ?? "Executing on backgound thread. Please use `MainScheduler.instance.schedule` to schedule work on main thread.")
+ rxFatalError(errorMessage ?? "Executing on background thread. Please use `MainScheduler.instance.schedule` to schedule work on main thread.")
44
}
45
46
0 commit comments