浏览代码

[DOCS] Fix _doc_count example typo (#65686)

Gil Raphaelli 4 年之前
父节点
当前提交
b4233f0cd4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/reference/mapping/fields/doc-count-field.asciidoc

+ 1 - 1
docs/reference/mapping/fields/doc-count-field.asciidoc

@@ -72,7 +72,7 @@ PUT my_index/_doc/2
       "values" : [0.1, 0.25, 0.35, 0.4, 0.45, 0.5],
       "counts" : [8, 17, 8, 7, 6, 2]
    },
-  "_doc_count_": 62 <1>
+  "_doc_count": 62 <1>
 }
 --------------------------------------------------
 <1> Field `_doc_count` must be a positive integer storing the number of documents aggregated to produce each histogram.