Skip to content

Commit

Permalink
Fix index name in bitmap filtering docs
Browse files Browse the repository at this point in the history
Signed-off-by: Russ Cam <[email protected]>
  • Loading branch information
russcam authored Jan 8, 2025
1 parent 984e2c3 commit d27b398
Showing 1 changed file with 3 additions and 3 deletions.
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
{
"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
{
"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
{
"name": "Product 3",
"product_id" : "333"
Expand Down

0 comments on commit d27b398

Please sign in to comment.