Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wording in Mono.expand documentation #1999

Merged
merged 1 commit into from Jan 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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