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 doc typo: missing word in reactiveProgramming.adoc #3075

Merged
merged 1 commit into from
Jun 13, 2022
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
2 changes: 1 addition & 1 deletion docs/asciidoc/reactiveProgramming.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ behavior to a `Publisher` and wraps the previous step's `Publisher` into a new i
The whole chain is thus linked, such that data originates from the first `Publisher` and
moves down the chain, transformed by each link. Eventually, a `Subscriber` finishes the
process. Remember that nothing happens until a `Subscriber` subscribes to a `Publisher`,
as we see shortly.
as we will see shortly.

TIP: Understanding that operators create new instances can help you avoid a common
mistake that would lead you to believe that an operator you used in your chain is not
Expand Down