[Docs] Fix missing comma in mapping

This commit is contained in:
David Pilato 2014-11-27 11:03:19 +01:00
parent bf0387e0bc
commit da27c2104a
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ price for the product. The mapping could look like:
"product" : {
"properties" : {
"resellers" : { <1>
"type" : "nested"
"type" : "nested",
"properties" : {
"name" : { "type" : "string" },
"price" : { "type" : "double" }