Merge pull request #13257 from elastic/docsfix

Fixed non-valid JSON (though ES would accept it)
This commit is contained in:
Lee Hinman 2015-09-02 07:51:13 -06:00
commit 118eab5462
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ A `bucket_script` aggregation looks like this in isolation:
"my_var1": "the_sum", <1>
"my_var2": "the_value_count"
},
script: "my_var1 / my_var2"
"script": "my_var1 / my_var2"
}
}
--------------------------------------------------

View File

@ -25,7 +25,7 @@ A `bucket_selector` aggregation looks like this in isolation:
"my_var1": "the_sum", <1>
"my_var2": "the_value_count"
},
script: "my_var1 > my_var2"
"script": "my_var1 > my_var2"
}
}
--------------------------------------------------