From 360cbcf6a956aab02499f9165a3d462aa7f13a1a Mon Sep 17 00:00:00 2001 From: xyc Date: Tue, 19 Sep 2023 11:40:15 -0400 Subject: [PATCH] update a typo --- src/docs/asciidoc/en/user-guide/10_using_the_disruptor.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/en/user-guide/10_using_the_disruptor.adoc b/src/docs/asciidoc/en/user-guide/10_using_the_disruptor.adoc index c93eb03e5..1490b7802 100644 --- a/src/docs/asciidoc/en/user-guide/10_using_the_disruptor.adoc +++ b/src/docs/asciidoc/en/user-guide/10_using_the_disruptor.adoc @@ -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. @@ -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] ----- \ No newline at end of file +----