[Docs] Fix syntax error leading to wrong doc ID (#48554)
In order to index a document with id 2, the "&" should be replaced by "?"
This commit is contained in:
parent
82e25c4ac7
commit
abddf51672
|
@ -16,7 +16,7 @@ PUT my_index/_doc/1
|
|||
"text": "Document with ID 1"
|
||||
}
|
||||
|
||||
PUT my_index/_doc/2&refresh=true
|
||||
PUT my_index/_doc/2?refresh=true
|
||||
{
|
||||
"text": "Document with ID 2"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue