Browse Source

Docs: Fix missing comma and boolean true

Closes #9350
eBuildy 10 years ago
parent
commit
85ef44fd73

+ 2 - 2
docs/reference/search/aggregations/metrics/geobounds-aggregation.asciidoc

@@ -21,8 +21,8 @@ Example:
     "aggs" : {
         "viewport" : {
             "geo_bounds" : {
-                "field" : "location" <1>
-                "wrap_longitude" : "true" <2>
+                "field" : "location", <1>
+                "wrap_longitude" : true <2>
             }
         }
     }