[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:
lgypro 2019-10-29 17:26:04 +08:00 committed by Christoph Büscher
parent 82e25c4ac7
commit abddf51672
1 changed files with 1 additions and 1 deletions

View File

@ -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"
}