Skip to content

Commit 7865e57

Browse files
authored
Small grammar fix
"It up to a client..." -> "It is up to a client..."
1 parent 1187b28 commit 7865e57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

items/convert-functions-to-observable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ public class ObservableContentDatabase implements Closeable {
9393

9494
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`.
9595

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.
9797

0 commit comments

Comments
 (0)