Skip to content

Commit 8500d33

Browse files
committed
Fix doc typos
1 parent 5a9d396 commit 8500d33

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/reference/esql/esql-async-query-api.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ monitor its progress, and retrieve results when they become available.
1111

1212
The API accepts the same parameters and request body as the synchronous
1313
<<esql-query-api,query API>>, along with additional async related
14-
properties as outline below.
14+
properties as outlined below.
1515

1616
[source,console]
1717
----
@@ -49,7 +49,7 @@ requests.
4949
// TEST[skip: no access to query ID - may return response values]
5050

5151
Otherwise, if the response's `is_running` value is `false`, the async
52-
query has finished, and the results are returned.
52+
query has finished and the results are returned.
5353

5454
[source,console-result]
5555
----

docs/reference/esql/esql-rest.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ run an async {esql} query.
263263
Queries initiated by the async query API may return results or not. The
264264
`wait_for_completion_timeout` property determines how long to wait for
265265
the results. If the results are not available by this time, a
266-
<<esql-async-query-api-response-body-query-id,query id>> is return which
266+
<<esql-async-query-api-response-body-query-id,query id>> is returned which
267267
can be later used to retrieve the results. For example:
268268

269269
[source,console]
@@ -303,15 +303,15 @@ requests.
303303

304304
To check the progress of an async query, use the <<esql-async-query-get-api,
305305
{esql} async query get API>> with the query ID. Specify how long you'd like
306-
for complete results in the `wait_for_completion_timeout` parameter.
306+
to wait for complete results in the `wait_for_completion_timeout` parameter.
307307

308308
[source,console]
309309
----
310310
GET /_query/async/FmNJRUZ1YWZCU3dHY1BIOUhaenVSRkEaaXFlZ3h4c1RTWFNocDdnY2FSaERnUTozNDE=?wait_for_completion_timeout=30s
311311
----
312312
// TEST[skip: no access to query ID - may return response values]
313313

314-
If the response's `is_running` value is `false`, the query has finished,
314+
If the response's `is_running` value is `false`, the query has finished
315315
and the results are returned.
316316

317317
[source,console-result]

0 commit comments

Comments
 (0)