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 f8651f2ca0ab30e44fb7099ca5f1068d5d2e90c7 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Wed Feb 21 12:54:40 2024 +0100 CAMEL-20410: documentation fixes for camel-lucene - Fixed samples - Fixed grammar and typos - Fixed punctuation - Added and/or fixed links - Converted to use tabs --- components/camel-lucene/src/main/docs/lucene-component.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-lucene/src/main/docs/lucene-component.adoc b/components/camel-lucene/src/main/docs/lucene-component.adoc index 47d4b7b750a..247c0e33ad5 100644 --- a/components/camel-lucene/src/main/docs/lucene-component.adoc +++ b/components/camel-lucene/src/main/docs/lucene-component.adoc @@ -73,14 +73,14 @@ include::partial$component-endpoint-headers.adoc[] This component supports 2 producer endpoints. -*insert* - The insert producer builds a searchable index by analyzing +*insert*: the insert producer builds a searchable index by analyzing the body in incoming exchanges and associating it with a token ("content"). -*query* - The query producer performs searches on a pre-created index. +*query*: the query producer performs searches on a pre-created index. The query uses the searchable index to perform score & relevance based searches. Queries are sent via the incoming exchange contains a header property name called 'QUERY'. The value of the header property 'QUERY' -is a Lucene Query. For more details on how to create Lucene Queries +is a Lucene Query. For more details on how to create Lucene Queries, check out https://lucene.apache.org/core/8_4_1/queryparser/org/apache/lucene/queryparser/classic/package-summary.html#package.description[Query Parser Classic syntax] === Lucene Processor
