Skip to content

Commit 10f8c67

Browse files
spreddy2714akarnokd
authored andcommitted
Grammar fix (#6149)
Scheduler description is grammatically error. Replaced "an unifrom" with "a uniform"
1 parent fd63c49 commit 10f8c67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Typically, you can move computations or blocking IO to some other thread via `su
193193

194194
### Schedulers
195195

196-
RxJava operators don't work with `Thread`s or `ExecutorService`s directly but with so called `Scheduler`s that abstract away sources of concurrency behind an uniform API. RxJava 2 features several standard schedulers accessible via `Schedulers` utility class.
196+
RxJava operators don't work with `Thread`s or `ExecutorService`s directly but with so called `Scheduler`s that abstract away sources of concurrency behind a uniform API. RxJava 2 features several standard schedulers accessible via `Schedulers` utility class.
197197

198198
- `Schedulers.computation()`: Run computation intensive work on a fixed number of dedicated threads in the background. Most asynchronous operator use this as their default `Scheduler`.
199199
- `Schedulers.io()`: Run I/O-like or blocking operations on a dynamically changing set of threads.

0 commit comments

Comments
 (0)