Docs: Add comma to reverse nested agg snippet

This commit is contained in:
Christoph Büscher 2017-03-17 14:07:18 +01:00 committed by GitHub
parent 5bd14424e6
commit 413bf05956

View File

@ -22,9 +22,9 @@ the issue documents as nested documents. The mapping could look like:
"issue" : {
"properties" : {
"tags" : { "type" : "text" }
"tags" : { "type" : "text" },
"comments" : { <1>
"type" : "nested"
"type" : "nested",
"properties" : {
"username" : { "type" : "keyword" },
"comment" : { "type" : "text" }