Skip to content

Commit d1e624b

Browse files
authored
remove repetitions of "the" word (elastic#15987)
Signed-off-by: carrychair <[email protected]>
1 parent 92b20bc commit d1e624b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/static/dead-letter-queues.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Set the value to `drop_older` to remove the oldest events to make space for new
131131
[[age-policy]]
132132
====== Age policy
133133
You can use the age policy to automatically control the volume of events in the dead letter queue.
134-
Use the the `dead_letter_queue.retain.age` setting (in `logstash.yml` or `pipelines.yml`) to have {ls}
134+
Use the `dead_letter_queue.retain.age` setting (in `logstash.yml` or `pipelines.yml`) to have {ls}
135135
remove events that are older than a value you define.
136136
Available time units are `d`, `h`, `m`, `s` respectively for days, hours, minutes and seconds.
137137
There is no default time unit, so you need to specify it.

docs/static/security/basic-auth.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and write and delete documents in the indices it creates.
77

88
To set up authentication credentials for Logstash:
99

10-
. Use the the **Management > Roles** UI in {kib} or the `role` API to create a
10+
. Use the **Management > Roles** UI in {kib} or the `role` API to create a
1111
`logstash_writer` role. For *cluster* privileges, add `manage_index_templates` and `monitor`.
1212
For *indices* privileges, add `write`, `create`, and `create_index`.
1313
+

logstash-core/lib/logstash/instrument/metric_store.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def key_paths(path)
239239
# Look at the rspec test for more usage.
240240
#
241241
# @param key_paths [Array<Symbol>] The list of keys part to filter
242-
# @param map [Concurrent::Map] The the part of map to search in
242+
# @param map [Concurrent::Map] The part of map to search in
243243
# @param new_hash [Hash] The hash to populate with the results.
244244
# @return Hash
245245
def get_recursively(key_paths, map, new_hash)

logstash-core/spec/logstash/state_resolver_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
end
3232

3333
after do
34-
# ensure that the the created pipeline are closed
34+
# ensure that the created pipeline are closed
3535
pipelines.running_pipelines.each { |_, pipeline| pipeline.close }
3636
end
3737

logstash-core/src/main/java/org/logstash/config/ir/ConfigCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ private ConfigCompiler() {
5151
* @param supportEscapes The value of the setting {@code config.support_escapes}
5252
* @param cve Config variable expander. Substitute variable with value in secret store, env, default config value
5353
* @return Compiled {@link PipelineIR}
54-
* @throws InvalidIRException if the the configuration contains errors
54+
* @throws InvalidIRException if the configuration contains errors
5555
*/
5656
@SuppressWarnings("unchecked")
5757
public static PipelineIR configToPipelineIR(final List<SourceWithMetadata> sourcesWithMetadata,

logstash-core/src/main/java/org/logstash/execution/QueueReadClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import java.io.IOException;
2626

2727
/**
28-
* Defines the methods to interact with queues from the the reader perspective
28+
* Defines the methods to interact with queues from the reader perspective
2929
* */
3030
public interface QueueReadClient {
3131
QueueBatch readBatch() throws InterruptedException;

tools/logstash-docgen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ You can now generate the documentation from main for all the plugin in the *logs
4747
bundle install
4848
```
4949

50-
You can use the the `bin/logstash-docgen` command to generate any plugin that you want, this executable can generate all the plugins or specific one from their main branch.
50+
You can use the `bin/logstash-docgen` command to generate any plugin that you want, this executable can generate all the plugins or specific one from their main branch.
5151

5252
Usages:
5353

0 commit comments

Comments
 (0)