Skip to content

Commit e6400dc

Browse files
committed
Use full-stop instead of colon to terminate description
1 parent eb88b89 commit e6400dc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/reference/query-languages/esql/kibana/definition/operators/is_not_null.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/predicates.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/is_not_null.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/predicates.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/test/java/org/elasticsearch/xpack/esql/expression/predicate/operator/NullPredicatesTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class TestNullPredicates {
8383
@FunctionInfo(
8484
operator = "predicates",
8585
returnType = {},
86-
description = "For NULL comparison use the `IS NULL` and `IS NOT NULL` predicates:",
86+
description = "For NULL comparison use the `IS NULL` and `IS NOT NULL` predicates.",
8787
examples = { @Example(file = "null", tag = "is-null"), @Example(file = "null", tag = "is-not-null") }
8888
)
8989
public TestNullPredicates(
@@ -151,7 +151,7 @@ public class TestIsNotNullPredicate {
151151
@FunctionInfo(
152152
operator = "predicates",
153153
returnType = {},
154-
description = "Use `IS NOT NULL` to filter data based on whether the field exists or not:",
154+
description = "Use `IS NOT NULL` to filter data based on whether the field exists or not.",
155155
examples = { @Example(file = "null", tag = "is-not-null") }
156156
)
157157
public TestIsNotNullPredicate(

0 commit comments

Comments
 (0)