Browse Source

[Docs] Correct typo in pipeline.asciidoc (#29431)

D Pinto 7 years ago
parent
commit
8d6a368402
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/aggregations/pipeline.asciidoc

+ 1 - 1
docs/reference/aggregations/pipeline.asciidoc

@@ -114,7 +114,7 @@ POST /_search
 === Special Paths
 
 Instead of pathing to a metric, `buckets_path` can use a special `"_count"` path.  This instructs
-the pipeline aggregation to use the document count as it's input.  For example, a moving average can be calculated on the document count of each bucket, instead of a specific metric:
+the pipeline aggregation to use the document count as its input.  For example, a moving average can be calculated on the document count of each bucket, instead of a specific metric:
 
 [source,js]
 --------------------------------------------------