Browse Source

Docs: Add comma to reverse nested agg snippet

Christoph Büscher 8 years ago
parent
commit
413bf05956

+ 2 - 2
docs/reference/aggregations/bucket/reverse-nested-aggregation.asciidoc

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