Skip to content

Commit edb4832

Browse files
jsorefjavanna
authored andcommitted
[DOCS] Various spelling corrections (#37046)
1 parent ac2e09b commit edb4832

File tree

66 files changed

+80
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+80
-80
lines changed

docs/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ buildRestTests.setups['stackoverflow'] = '''
287287
body: |'''
288288

289289
// Make Kibana strongly connected to elasticsearch and logstash
290-
// Make Kibana rarer (and therefore higher-ranking) than Javascript
291-
// Make Javascript strongly connected to jquery and angular
290+
// Make Kibana rarer (and therefore higher-ranking) than JavaScript
291+
// Make JavaScript strongly connected to jquery and angular
292292
// Make Cabana strongly connected to elasticsearch but only as a result of a single author
293293

294294
for (int i = 0; i < 150; i++) {

docs/java-api/docs/update-by-query.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ operation that executes:
7272
`noop`::
7373

7474
Set `ctx.op = "noop"` if your script doesn't make any
75-
changes. The `updateByQuery` operaton then omits that document from the updates.
75+
changes. The `updateByQuery` operation then omits that document from the updates.
7676
This behavior increments the `noop` counter in the response body.
7777

7878
`delete`::

docs/java-rest/high-level/document/multi-get.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ include-tagged::{doc-tests-file}[{api}-conflict]
128128
--------------------------------------------------
129129
<1> `getResponse` is null.
130130
<2> `getFailure` isn't and contains an `Exception`.
131-
<3> That `Exception` is actuall and `ElasticsearchException`
131+
<3> That `Exception` is actually an `ElasticsearchException`
132132
<4> and it has a status of `CONFLICT`. It'd have been an HTTP 409 if this
133133
wasn't a multi get.
134134
<5> `getMessage` explains the actual cause, `

docs/java-rest/high-level/document/update-by-query.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ include::../execution.asciidoc[]
125125
[id="{upid}-{api}-response"]
126126
==== Update By Query Response
127127

128-
The returned +{resposne}+ contains information about the executed operations and
128+
The returned +{response}+ contains information about the executed operations and
129129
allows to iterate over each result as follows:
130130

131131
["source","java",subs="attributes,callouts,macros"]

docs/java-rest/high-level/getting-started.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ include-tagged::{doc-tests}/MiscellaneousDocumentationIT.java[rest-high-level-cl
144144
In the rest of this documentation about the Java High Level Client, the `RestHighLevelClient` instance
145145
will be referenced as `client`.
146146

147-
[[java-rest-hight-getting-started-request-options]]
147+
[[java-rest-high-getting-started-request-options]]
148148
=== RequestOptions
149149

150150
All APIs in the `RestHighLevelClient` accept a `RequestOptions` which you can

docs/java-rest/high-level/indices/unfreeze_index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ An +{request}+ requires an `index` argument:
1515
--------------------------------------------------
1616
include-tagged::{doc-tests-file}[{api}-request]
1717
--------------------------------------------------
18-
<1> The index to unreeze
18+
<1> The index to unfreeze
1919

2020
==== Optional arguments
2121
The following arguments can optionally be provided:

docs/java-rest/high-level/migration/get-assistance.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[java-rest-high-migration-get-assistance]]
22
=== Migration Get Assistance
33

4-
[[java-rest-high-migraton-get-assistance-request]]
4+
[[java-rest-high-migration-get-assistance-request]]
55
==== Index Upgrade Info Request
66

77
An `IndexUpgradeInfoRequest` does not require any argument:

docs/java-rest/high-level/migration/upgrade.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[[java-rest-high-migration-upgrade]]
99
=== Migration Upgrade
1010

11-
[[java-rest-high-migraton-upgrade-request]]
11+
[[java-rest-high-migration-upgrade-request]]
1212
==== Index Upgrade Request
1313

1414
An +{request}+ requires an index argument. Only one index at the time should be upgraded:
@@ -32,7 +32,7 @@ include-tagged::{doc-tests-file}[{api}-execute]
3232
The returned +{response}+ contains information about the executed operation
3333

3434

35-
[[java-rest-high-migraton-async-upgrade-request]]
35+
[[java-rest-high-migration-async-upgrade-request]]
3636
==== Asynchronous Execution
3737

3838
The asynchronous execution of an upgrade request requires both the +{request}+

docs/java-rest/high-level/search/rank-eval.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ include-tagged::{doc-tests}/SearchDocumentationIT.java[rank-eval-response]
8282
<2> Partial results that are keyed by their query id
8383
<3> The metric score for each partial result
8484
<4> Rated search hits contain a fully fledged `SearchHit`
85-
<5> Rated search hits also contain an `Optional<Interger>` rating that
85+
<5> Rated search hits also contain an `Optional<Integer>` rating that
8686
is not present if the document did not get a rating in the request
8787
<6> Metric details are named after the metric used in the request
8888
<7> After casting to the metric used in the request, the

docs/java-rest/high-level/security/get-privileges.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
--
33
:api: get-privileges
44
:request: GetPrivilegesRequest
5-
:respnse: GetPrivilegesResponse
5+
:response: GetPrivilegesResponse
66
--
77

88
[id="{upid}-{api}"]

0 commit comments

Comments
 (0)