Skip to content

Commit

Permalink
Lint fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
afoucret committed Nov 19, 2024
1 parent f02f716 commit ea86e2b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ public class Kql extends FullTextFunction {
)
public Kql(
Source source,
@Param(name = "query", type = { "keyword", "text" }, description = "Query string in KQL query string format.") Expression queryString
@Param(
name = "query",
type = { "keyword", "text" },
description = "Query string in KQL query string format."
) Expression queryString
) {
super(source, queryString, List.of(queryString));
}
Expand Down

0 comments on commit ea86e2b

Please sign in to comment.