You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: items/convert-functions-to-observable.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,5 +93,5 @@ public class ObservableContentDatabase implements Closeable {
93
93
94
94
Each of the `public` methods that return an `Observable` uses the `private` method `subscribeOnScheduler` to create that `Observable`. That method accepts a `Func0` parameter specifying the work to execute on the `Scheduler` instance `mScheduler`. It uses our `makeObservable` method to convert that work into an `Observable`, and uses the `subscribeOn` operator to ensure that it is executed on the `Scheduler` instance `mScheduler`.
95
95
96
-
It up to a client, upon subscribing to the `Observable` instances from `ObservableContentDatabase`, to invoke `observeOn(AndroidSchedulers.mainThread())` if necessary.
96
+
It is up to a client, upon subscribing to the `Observable` instances from `ObservableContentDatabase`, to invoke `observeOn(AndroidSchedulers.mainThread())` if necessary.
0 commit comments