Skip to content

Commit e6ab030

Browse files
committed
Fix param name in doc
1 parent 3ab7f5d commit e6ab030

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/reference/esql/functions/kibana/definition/match.json

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

docs/reference/esql/functions/parameters/match.asciidoc

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/esql/functions/signature/match.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/reference/esql/functions/types/match.asciidoc

Lines changed: 1 addition & 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/Match.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public Match(
7777
type = { "integer", "double" },
7878
description = "Boost value for the query."
7979
) Expression boost,
80-
@Param(optional = true, name = "boost", type = { "integer", "keyword" }, description = "Query fuzziness") Expression fuzziness
80+
@Param(optional = true, name = "fuzziness", type = { "integer", "keyword" }, description = "Query fuzziness") Expression fuzziness
8181
) {
8282
this(source, field, matchQuery, boost, fuzziness, false);
8383
}

0 commit comments

Comments
 (0)