Skip to content

Commit 296cae6

Browse files
committed
fix spacing and line formatting in the function
1 parent 6142e78 commit 296cae6

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

docs/reference/query-languages/esql/_snippets/functions/description/multi_match.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/functions/multi_match.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/docs/functions/multi_match.md

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MultiMatch.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,11 @@ public class MultiMatch extends FullTextFunction implements OptionalArgument, Po
138138
returnType = "boolean",
139139
preview = true,
140140
appliesTo = { @FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.COMING) },
141-
description = "Use `MULTI_MATCH` to perform a <<query-dsl-multi-match-query,multi-match query>> on the specified field."
142-
+ "This query builds on the match query to allow multi-field queries.",
141+
description = """
142+
Use `MULTI_MATCH` to perform a
143+
[multi-match query](/reference/query-languages/query-dsl/query-dsl-match-query.md#query-dsl-multi-match-query)
144+
on the specified field.
145+
This query builds on the match query to allow multi-field queries.""",
143146
examples = {
144147
@Example(file = "multi-match-function", tag = "multi-match-with-field"),
145148
@Example(file = "multi-match-function", tag = "multi-match-with-named-function-params") }

0 commit comments

Comments
 (0)