Skip to content

Commit a852e3e

Browse files
nik9000rjernst
authored andcommitted
ESQL: Fix docs grammar (elastic#134138)
`using using` isn't right. Relates to elastic#133892
1 parent d2c42a1 commit a852e3e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/reference/query-languages/esql/kibana/definition/operators/not rlike.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/definition/operators/rlike.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/operators/not rlike.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/docs/operators/rlike.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.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class RLike extends RegexMatch<RLikePattern> {
3232
public static final String NAME = "RLIKE";
3333

3434
@FunctionInfo(returnType = "boolean", description = """
35-
Use `RLIKE` to filter data based on string patterns using using
35+
Use `RLIKE` to filter data based on string patterns using
3636
<<regexp-syntax,regular expressions>>. `RLIKE` usually acts on a field placed on
3737
the left-hand side of the operator, but it can also act on a constant (literal)
3838
expression. The right-hand side of the operator represents the pattern.""", detailedDescription = """

0 commit comments

Comments
 (0)