Skip to content

Commit 749d605

Browse files
authored
2.x: Update Readme.md about the parallel() operator (#6117)
1 parent 839c70f commit 749d605

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ Note, however, that `flatMap` doesn't guarantee any order and the end result fro
240240
- `concatMap` that maps and runs one inner flow at a time and
241241
- `concatMapEager` which runs all inner flows "at once" but the output flow will be in the order those inner flows were created.
242242

243-
Alternatively, there is a [*beta*](#beta) operator `Flowable.parallel()` and type `ParallelFlowable` that helps achieve the same parallel processing pattern:
243+
Alternatively, the `Flowable.parallel()` operator and the `ParallelFlowable` type help achieve the same parallel processing pattern:
244244

245245
```java
246246
Flowable.range(1, 10)

0 commit comments

Comments
 (0)