Skip to content

Commit

Permalink
Fix wording in Mono.expand documentation (#1999)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-tarjanyi authored and simonbasle committed Jan 6, 2020
1 parent 7f67c18 commit 372ad23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reactor-core/src/main/java/reactor/core/publisher/Mono.java
Expand Up @@ -2597,7 +2597,7 @@ public final Flux<T> expandDeep(Function<? super T, ? extends Publisher<? extend
* Recursively expand elements into a graph and emit all the resulting element using
* a breadth-first traversal strategy.
* <p>
* That is: emit the value from this {@link Mono} first, then it each at a first level of
* That is: emit the value from this {@link Mono} first, then expand it at a first level of
* recursion and emit all of the resulting values, then expand all of these at a
* second level and so on...
* <p>
Expand Down Expand Up @@ -2637,7 +2637,7 @@ public final Flux<T> expand(Function<? super T, ? extends Publisher<? extends T>
* Recursively expand elements into a graph and emit all the resulting element using
* a breadth-first traversal strategy.
* <p>
* That is: emit the value from this {@link Mono} first, then it each at a first level of
* That is: emit the value from this {@link Mono} first, then expand it at a first level of
* recursion and emit all of the resulting values, then expand all of these at a
* second level and so on...
* <p>
Expand Down

0 comments on commit 372ad23

Please sign in to comment.