[Docs] Delete superfluous callouts (#31111)

Those callout create rendering problems on the subsequent page.

Closes #30532
This commit is contained in:
Christoph Büscher 2018-06-06 09:53:14 +02:00 committed by GitHub
parent e9bd92fc76
commit 1cee45e768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ GET my_index/_search
{ {
"query": { "query": {
"match": { "match": {
"manager.name": "Alice White" <1> "manager.name": "Alice White"
} }
}, },
"aggs": { "aggs": {
@ -89,7 +89,7 @@ GET my_index/_search
"aggs": { "aggs": {
"Employee Ages": { "Employee Ages": {
"histogram": { "histogram": {
"field": "employees.age", <2> "field": "employees.age",
"interval": 5 "interval": 5
} }
} }