Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix index name in bitmap filtering docs #9032

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _query-dsl/term/terms.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ PUT /products
Next, index three documents that correspond to products:

```json
PUT students/_doc/1
PUT products/_doc/1
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PUT products/_doc/1
PUT /products/_doc/1

{
"name": "Product 1",
"product_id" : "111"
Expand All @@ -286,7 +286,7 @@ PUT students/_doc/1
{% include copy-curl.html %}

```json
PUT students/_doc/2
PUT products/_doc/2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PUT products/_doc/2
PUT /products/_doc/2

{
"name": "Product 2",
"product_id" : "222"
Expand All @@ -295,7 +295,7 @@ PUT students/_doc/2
{% include copy-curl.html %}

```json
PUT students/_doc/3
PUT products/_doc/3
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
PUT products/_doc/3
PUT /products/_doc/3

{
"name": "Product 3",
"product_id" : "333"
Expand Down
Loading