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: src/main/java/io/reactivex/schedulers/Schedulers.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ private Schedulers() {
114
114
* <li>{@code rx2.computation-priority} (int): sets the thread priority of the {@link #computation()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
115
115
* </ul>
116
116
* <p>
117
-
* The default value of this scheduler can be overridden at initialization time via the
117
+
* The default value of this scheduler can be overridden at initialization time via the
* Note that due to possible initialization cycles, using any of the other scheduler-returning methods will
164
164
* result in a {@code NullPointerException}.
@@ -203,7 +203,7 @@ public static Scheduler trampoline() {
203
203
* <p>
204
204
* The default implementation of this scheduler creates a new, single-threaded {@link ScheduledExecutorService} for
205
205
* each invocation of the {@link Scheduler#scheduleDirect(Runnable)} (plus its overloads) and {@link Scheduler#createWorker()}
206
-
* methods, thus an unbounded number of worker threads may be created that can
206
+
* methods, thus an unbounded number of worker threads may be created that can
207
207
* result in system slowdowns or {@code OutOfMemoryError}. Therefore, for casual uses or when implementing an operator,
208
208
* the Worker instances must be disposed via {@link io.reactivex.Scheduler.Worker#dispose()}.
209
209
* <p>
@@ -216,7 +216,7 @@ public static Scheduler trampoline() {
216
216
* <li>{@code rx2.newthread-priority} (int): sets the thread priority of the {@link #newThread()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
217
217
* </ul>
218
218
* <p>
219
-
* The default value of this scheduler can be overridden at initialization time via the
219
+
* The default value of this scheduler can be overridden at initialization time via the
0 commit comments