Skip to content

Commit 693807a

Browse files
authored
[DOCS] Fix double spaces (#71082)
1 parent 83725e4 commit 693807a

File tree

282 files changed

+834
-834
lines changed

Some content is hidden

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

282 files changed

+834
-834
lines changed

TESTING.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ password: `elastic-password`.
9292

9393
=== Test case filtering.
9494

95-
You can run a single test, provided that you specify the Gradle project. See the documentation on
95+
You can run a single test, provided that you specify the Gradle project. See the documentation on
9696
https://docs.gradle.org/current/userguide/userguide_single.html#simple_name_pattern[simple name pattern filtering].
9797

9898
Run a single test case in the `server` project:
@@ -385,13 +385,13 @@ vagrant plugin install vagrant-cachier
385385
. You can run all of the OS packaging tests with `./gradlew packagingTest`.
386386
This task includes our legacy `bats` tests. To run only the OS tests that are
387387
written in Java, run `.gradlew distroTest`, will cause Gradle to build the tar,
388-
zip, and deb packages and all the plugins. It will then run the tests on every
388+
zip, and deb packages and all the plugins. It will then run the tests on every
389389
available system. This will take a very long time.
390390
+
391391
Fortunately, the various systems under test have their own Gradle tasks under
392392
`qa/os`. To find the systems tested, do a listing of the `qa/os` directory.
393393
To find out what packaging combinations can be tested on a system, run
394-
the `tasks` task. For example:
394+
the `tasks` task. For example:
395395
+
396396
----------------------------------
397397
./gradlew :qa:os:ubuntu-1804:tasks
@@ -558,7 +558,7 @@ fetching the latest from the remote.
558558

559559
== Testing in FIPS 140-2 mode
560560

561-
We have a CI matrix job that periodically runs all our tests with the JVM configured
561+
We have a CI matrix job that periodically runs all our tests with the JVM configured
562562
to be FIPS 140-2 compliant with the use of the BouncyCastle FIPS approved Security Provider.
563563
FIPS 140-2 imposes certain requirements that affect how our tests should be set up or what
564564
can be tested. This section summarizes what one needs to take into consideration so that

docs/community-clients/index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Also see the {client}/php-api/current/index.html[official Elasticsearch PHP clie
150150

151151
* https://github.com/nervetattoo/elasticsearch[elasticsearch] PHP client.
152152

153-
* https://github.com/madewithlove/elasticsearcher[elasticsearcher] Agnostic lightweight package on top of the Elasticsearch PHP client. Its main goal is to allow for easier structuring of queries and indices in your application. It does not want to hide or replace functionality of the Elasticsearch PHP client.
153+
* https://github.com/madewithlove/elasticsearcher[elasticsearcher] Agnostic lightweight package on top of the Elasticsearch PHP client. Its main goal is to allow for easier structuring of queries and indices in your application. It does not want to hide or replace functionality of the Elasticsearch PHP client.
154154

155155
[[python]]
156156
== Python

docs/java-rest/high-level/document/term-vectors.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ offsets.
5151
payloads.
5252
<6> Set `filterSettings` to filter the terms that can be returned based
5353
on their tf-idf scores.
54-
<7> Set `perFieldAnalyzer` to specify a different analyzer than
54+
<7> Set `perFieldAnalyzer` to specify a different analyzer than
5555
the one that the field has.
5656
<8> Set `realtime` to `false` (default is `true`) to retrieve term vectors
5757
near realtime.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The simplest version uses a built-in analyzer:
2020
include-tagged::{doc-tests-file}[{api}-builtin-request]
2121
---------------------------------------------------
2222
<1> A built-in analyzer
23-
<2> The text to include. Multiple strings are treated as a multi-valued field
23+
<2> The text to include. Multiple strings are treated as a multi-valued field
2424

2525
You can configure a custom analyzer:
2626
["source","java",subs="attributes,callouts,macros"]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ include-tagged::{doc-tests-file}[{api}-request-masterTimeout]
3838
--------------------------------------------------
3939
include-tagged::{doc-tests-file}[{api}-request-waitForActiveShards]
4040
--------------------------------------------------
41-
<1> The number of active shard copies to wait for before the freeze index API
41+
<1> The number of active shard copies to wait for before the freeze index API
4242
returns a response, as an `ActiveShardCount`
4343

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The following arguments can optionally be provided:
2525
--------------------------------------------------
2626
include-tagged::{doc-tests-file}[{api}-request-names]
2727
--------------------------------------------------
28-
<1> One or more settings that be the only settings retrieved. If unset, all settings will be retrieved
28+
<1> One or more settings that be the only settings retrieved. If unset, all settings will be retrieved
2929

3030
["source","java",subs="attributes,callouts,macros"]
3131
--------------------------------------------------

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ include-tagged::{doc-tests-file}[{api}-request-waitForActiveShards]
4343
--------------------------------------------------
4444
<1> The number of active shard copies to wait for before the open index API
4545
returns a response, as an `int`
46-
<2> The number of active shard copies to wait for before the open index API
46+
<2> The number of active shard copies to wait for before the open index API
4747
returns a response, as an `ActiveShardCount`
4848

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ include-tagged::{doc-tests-file}[{api}-request-masterTimeout]
3737
--------------------------------------------------
3838
include-tagged::{doc-tests-file}[{api}-request-waitForActiveShards]
3939
--------------------------------------------------
40-
<1> The number of active shard copies to wait for before the unfreeze index API
40+
<1> The number of active shard copies to wait for before the unfreeze index API
4141
returns a response, as an `ActiveShardCount`
4242

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

docs/java-rest/high-level/licensing/start-basic.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ license started. If it was not started, it returns an error message describing
2020
why.
2121

2222
Acknowledgement messages may also be returned if this API was called without
23-
the `acknowledge` flag set to `true`. In this case you need to display the
23+
the `acknowledge` flag set to `true`. In this case you need to display the
2424
messages to the end user and if they agree, resubmit the request with the
2525
`acknowledge` flag set to `true`. Please note that the response will still
2626
return a 200 return code even if it requires an acknowledgement. So, it is

docs/java-rest/high-level/licensing/start-trial.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ license started. If it was not started, it returns an error message describing
2323
why.
2424

2525
Acknowledgement messages may also be returned if this API was called without
26-
the `acknowledge` flag set to `true`. In this case you need to display the
26+
the `acknowledge` flag set to `true`. In this case you need to display the
2727
messages to the end user and if they agree, resubmit the request with the
2828
`acknowledge` flag set to `true`. Please note that the response will still
2929
return a 200 return code even if it requires an acknowledgement. So, it is

0 commit comments

Comments
 (0)