Skip to content

Commit a37c759

Browse files
msanchoclintongormley
authored andcommitted
Fixed typo in documentation (#23406)
* Fixed typo in documentation The option in "gap_policy" "insert_zeros" was missing a trailing "s" * Update movavg-aggregation.asciidoc
1 parent c54fa17 commit a37c759

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/aggregations/pipeline/movavg-aggregation.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A `moving_avg` aggregation looks like this in isolation:
2727
"buckets_path": "the_sum",
2828
"model": "holt",
2929
"window": 5,
30-
"gap_policy": "insert_zero",
30+
"gap_policy": "insert_zeros",
3131
"settings": {
3232
"alpha": 0.8
3333
}
@@ -40,7 +40,7 @@ A `moving_avg` aggregation looks like this in isolation:
4040
|Parameter Name |Description |Required |Default Value
4141
|`buckets_path` |Path to the metric of interest (see <<buckets-path-syntax, `buckets_path` Syntax>> for more details |Required |
4242
|`model` |The moving average weighting model that we wish to use |Optional |`simple`
43-
|`gap_policy` |Determines what should happen when a gap in the data is encountered. |Optional |`insert_zero`
43+
|`gap_policy` |Determines what should happen when a gap in the data is encountered. |Optional |`insert_zeros`
4444
|`window` |The size of window to "slide" across the histogram. |Optional |`5`
4545
|`minimize` |If the model should be algorithmically minimized. See <<movavg-minimizer, Minimization>> for more
4646
details |Optional |`false` for most models

0 commit comments

Comments
 (0)