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

update a typo #459

Merged
merged 1 commit into from
Sep 29, 2023
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 src/docs/asciidoc/en/user-guide/10_using_the_disruptor.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ More details are available in the section about being optionally lock-free.
There is no specific code representation of the Event as it defined entirely by the user.

- *Event Processor*: The main event loop for handling events from the Disruptor and has ownership of consumer's Sequence.
There is a single representation called BatchEventProcessor that contains an efficient implementation of the event loop and will call back onto a used supplied implementation of the EventHandler interface.
There is a single representation called BatchEventProcessor that contains an efficient implementation of the event loop and will call back onto a user supplied implementation of the EventHandler interface.

- *Event Handler*: An interface that is implemented by the user and represents a consumer for the Disruptor.

Expand Down Expand Up @@ -437,4 +437,4 @@ include::{gradle-rootdir}/src/examples/java/com/lmax/disruptor/examples/objectev
[source,java]
----
include::{gradle-rootdir}/src/examples/java/com/lmax/disruptor/examples/EarlyReleaseHandler.java[tag=example]
----
----