Skip to content

Commit 63877ae

Browse files
Apsaliyaakarnokd
authored andcommitted
Fix few typos in readme. (#5967)
1 parent 0072c30 commit 63877ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Flowable.range(1, 10)
238238
.blockingSubscribe(System.out::println);
239239
```
240240

241-
Practically, paralellism in RxJava means running independent flows and merging their results back into a single flow. The operator `flatMap` does this by first mapping each number from 1 to 10 into its own individual `Flowable`, runs them and merges the computed squares.
241+
Practically, parallelism in RxJava means running independent flows and merging their results back into a single flow. The operator `flatMap` does this by first mapping each number from 1 to 10 into its own individual `Flowable`, runs them and merges the computed squares.
242242

243243
Note, however, that `flatMap` doesn't guarantee any order and the end result from the inner flows may end up interleaved. There are alternative operators:
244244

@@ -273,7 +273,7 @@ inventorySource.flatMap(inventoryItem ->
273273

274274
### Continuations
275275

276-
Sometimes, when an item has become available, one would like to perform some dependent computations on it. This is sometimes called **continuations** and, depending on what should happen and what types are involed, may involve various operators to accomplish.
276+
Sometimes, when an item has become available, one would like to perform some dependent computations on it. This is sometimes called **continuations** and, depending on what should happen and what types are involved, may involve various operators to accomplish.
277277

278278
#### Dependent
279279

@@ -457,7 +457,7 @@ This can get also ambiguous when functional interface types get involved as the
457457

458458
#### Error handling
459459

460-
Dataflows can fail, at which point the error is emitted to the consumer(s). Sometimes though, multiple sources may fail at which point there is a choice wether or not wait for all of them to complete or fail. To indicate this opportunity, many operator names are suffixed with the `DelayError` words (while others feature a `delayError` or `delayErrors` boolean flag in one of their overloads):
460+
Dataflows can fail, at which point the error is emitted to the consumer(s). Sometimes though, multiple sources may fail at which point there is a choice whether or not wait for all of them to complete or fail. To indicate this opportunity, many operator names are suffixed with the `DelayError` words (while others feature a `delayError` or `delayErrors` boolean flag in one of their overloads):
461461

462462
```java
463463
Flowable<T> concat(Publisher<? extends Publisher<? extends T>> sources);

0 commit comments

Comments
 (0)