Skip to content

Commit f3b4c7d

Browse files
committed
Fix doc examples (; at the end of examples)
1 parent 4d768b5 commit f3b4c7d

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

x-pack/plugin/esql/qa/testFixtures/src/main/resources/kql-function.csv-spec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ FROM books
1010
| WHERE KQL("author: Faulkner")
1111
| KEEP book_no, author
1212
| SORT book_no
13-
| LIMIT 5;
13+
| LIMIT 5
1414
// end::kql-with-field[]
15+
;
1516

1617
// tag::kql-with-field-result[]
1718
book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
2021
2847 | Colleen Faulkner
2122
2883 | William Faulkner
2223
3293 | Danny Faulkner
23-
;
2424
// end::kql-with-field-result[]
25+
;
2526

2627
kqlWithMultipleFields
2728
required_capability: kql_function

x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-function.csv-spec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ FROM books
1010
| WHERE MATCH(author, "Faulkner")
1111
| KEEP book_no, author
1212
| SORT book_no
13-
| LIMIT 5;
13+
| LIMIT 5
1414
// end::match-with-field[]
15+
;
1516

1617
// tag::match-with-field-result[]
1718
book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
2021
2847 | Colleen Faulkner
2122
2883 | William Faulkner
2223
3293 | Danny Faulkner
23-
;
2424
// end::match-with-field-result[]
25+
;
2526

2627
matchWithMultipleFunctions
2728
required_capability: match_function

x-pack/plugin/esql/qa/testFixtures/src/main/resources/match-operator.csv-spec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ FROM books
1010
| WHERE author:"Faulkner"
1111
| KEEP book_no, author
1212
| SORT book_no
13-
| LIMIT 5;
13+
| LIMIT 5
1414
// end::match-with-field[]
15+
;
1516

1617
// tag::match-with-field-result[]
1718
book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
2021
2847 | Colleen Faulkner
2122
2883 | William Faulkner
2223
3293 | Danny Faulkner
23-
;
2424
// end::match-with-field-result[]
25+
;
2526

2627
matchWithMultipleFunctions
2728
required_capability: match_operator_colon

x-pack/plugin/esql/qa/testFixtures/src/main/resources/qstr-function.csv-spec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ FROM books
1010
| WHERE QSTR("author: Faulkner")
1111
| KEEP book_no, author
1212
| SORT book_no
13-
| LIMIT 5;
13+
| LIMIT 5
1414
// end::qstr-with-field[]
15+
;
1516

1617
// tag::qstr-with-field-result[]
1718
book_no:keyword | author:text
@@ -20,8 +21,8 @@ book_no:keyword | author:text
2021
2847 | Colleen Faulkner
2122
2883 | William Faulkner
2223
3293 | Danny Faulkner
23-
;
2424
// end::qstr-with-field-result[]
25+
;
2526

2627
qstrWithMultipleFields
2728
required_capability: qstr_function

0 commit comments

Comments
 (0)