Add missing comma in JSON data in curl example

Relates #18227
This commit is contained in:
Zack Dever 2016-05-09 18:17:36 -07:00 committed by Jason Tedor
parent eed5b0be4f
commit 5a7edf992c
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ associated with it.
$ curl -XPUT 'http://localhost:9200/twitter/' -d '{
"settings" : {
"index" : {
"number_of_shards" : 3 <1>
"number_of_shards" : 3, <1>
"number_of_replicas" : 2 <2>
}
}