Skip to content

Commit 1814b66

Browse files
committed
[DOCS] Fix typos in data stream docs
1 parent 2881995 commit 1814b66

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/reference/data-streams/data-streams-overview.asciidoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
++++
66

77
A data stream consists of one or more _backing indices_. Backing indices are
8-
<<index-hidden,hidden>>, automatically-generated indices used to store a
9-
stream's documents.
8+
<<index-hidden,hidden>>, auto-generated indices used to store a stream's
9+
documents.
1010

1111
image::images/data-streams/data-streams-diagram.svg[align="center"]
1212

@@ -78,10 +78,10 @@ You cannot add new documents to a stream's other backing indices, even by
7878
sending requests directly to the index. This means you cannot submit the
7979
following requests directly to any backing index except the write index:
8080

81-
* An <<docs-index_,Index API>> request with an
81+
* An <<docs-index_,index API>> request with an
8282
<<docs-index-api-op_type,`op_type`>> of `create`. The `op_type` parameter
8383
defaults to `create` when adding new documents.
84-
* A <<docs-bulk,Bulk API>> request using a `create` action
84+
* A <<docs-bulk,bulk API>> request using a `create` action
8585

8686
Because it's the only index capable of ingesting new documents, you cannot
8787
perform operations on a write index that might hinder indexing. These
@@ -124,17 +124,17 @@ cannot send update or deletion requests for existing documents to a data stream.
124124
To update or delete specific documents in a data stream, submit one of the
125125
following requests to the backing index containing the document:
126126

127-
* An <<docs-index_,Index API>> request with an
127+
* An <<docs-index_,index API>> request with an
128128
<<docs-index-api-op_type,`op_type`>> of `index`.
129129
These requests must include valid <<optimistic-concurrency-control,`if_seq_no`
130130
and `if_primary_term`>> arguments.
131131

132-
* A <<docs-bulk,Bulk API>> request using the `delete`, `index`, or `update`
132+
* A <<docs-bulk,bulk API>> request using the `delete`, `index`, or `update`
133133
action. If the action type is `index`, the action must include valid
134134
<<bulk-optimistic-concurrency-control,`if_seq_no` and `if_primary_term`>>
135135
arguments.
136136

137-
* A <<docs-delete,Delete API>> request
137+
* A <<docs-delete,delete API>> request
138138

139139
TIP: If you need to frequently update or delete existing documents across
140140
multiple indices, we recommend using an <<indices-add-alias,index alias>> and

0 commit comments

Comments
 (0)