diff --git a/docs/overview/aggregations/elastic_aggregation_min.md b/docs/overview/aggregations/elastic_aggregation_min.md index 874672da5..1db1a2e85 100644 --- a/docs/overview/aggregations/elastic_aggregation_min.md +++ b/docs/overview/aggregations/elastic_aggregation_min.md @@ -22,7 +22,7 @@ You can create a [type-safe](https://lambdaworks.github.io/zio-elasticsearch/ove val aggregation: MinAggregation = minAggregation(name = "minAggregation", field = Document.intField) ``` -If you want to change the `missing`, you can use `missing` method: +If you want to change the `missing` parameter, you can use `missing` method: ```scala val aggregationWithMissing: MinAggregation = minAggregation(name = "minAggregation", field = Document.intField).missing(10.0) ```