This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit 91fe59d54861338cabab2a394d07f58a82449984 Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Feb 24 11:53:58 2021 +0100 The count of transforms, converter and aggregation strategy seems to be broken for docs --- .../src/main/resources/camel-kafka-connector-sink-options.mvel | 2 +- .../src/main/resources/camel-kafka-connector-source-options.mvel | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-sink-options.mvel b/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-sink-options.mvel index e41cd97..75cfed1 100644 --- a/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-sink-options.mvel +++ b/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-sink-options.mvel @@ -54,7 +54,7 @@ The @{title} sink connector supports @{converters.size()} converters out of the @if{transforms.isEmpty()} The @{title} sink connector has no transforms out of the box. @else{} -The @{title} sink connector supports @{converters.size()} transforms out of the box, which are listed below. +The @{title} sink connector supports @{transforms.size()} transforms out of the box, which are listed below. @end{} @if{!transforms.isEmpty()} diff --git a/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-source-options.mvel b/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-source-options.mvel index 572dfe4..06afc23 100644 --- a/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-source-options.mvel +++ b/tooling/camel-kafka-connector-generator-maven-plugin/src/main/resources/camel-kafka-connector-source-options.mvel @@ -54,7 +54,7 @@ The @{title} source connector supports @{converters.size()} converters out of th @if{transforms.isEmpty()} The @{title} source connector has no transforms out of the box. @else{} -The @{title} source connector supports @{converters.size()} transforms out of the box, which are listed below. +The @{title} source connector supports @{transforms.size()} transforms out of the box, which are listed below. @end{} @if{!transforms.isEmpty()}
