You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/01/20 11:32:18 UTC

[camel] 05/05: (chores) camel-kafka: minor documentation fix

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 66497dd61fe100aa40dd0f86958e545862c6344a
Author: Otavio Rodolfo Piske <op...@redhat.com>
AuthorDate: Thu Jan 20 09:26:24 2022 +0100

    (chores) camel-kafka: minor documentation fix
---
 components/camel-kafka/src/main/docs/kafka-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-kafka/src/main/docs/kafka-component.adoc b/components/camel-kafka/src/main/docs/kafka-component.adoc
index 7683bbf..2fc39a6 100644
--- a/components/camel-kafka/src/main/docs/kafka-component.adoc
+++ b/components/camel-kafka/src/main/docs/kafka-component.adoc
@@ -400,7 +400,7 @@ public void process(Exchange exchange) {
 ----
 
 This will force a synchronous commit which will block until the commit is acknowledge on Kafka, or if it fails an exception is thrown.
-You can use an asynchronous commit as well by configuring the `KafkaManualCommitFactory` with the `DefaultKafkaManualAsyncCommitFactory`implementation.
+You can use an asynchronous commit as well by configuring the `KafkaManualCommitFactory` with the `DefaultKafkaManualAsyncCommitFactory` implementation.
 
 The commit will then be done in the next consumer loop using the kafka asynchronous commit api.
 Be aware that records from a partition must be processed and committed by a unique thread.