Remove useless parentheses in bucket_key formula (#63868)

This commit is contained in:
Aref Razavi 2020-10-19 02:52:25 -07:00 committed by Christoph Büscher
parent eef670f004
commit 2950818d44
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ example, if the interval is a calendar day, `2020-01-03T07:00:01Z` is rounded to
[source,java]
----
bucket_key = Math.floor(value / interval) * interval)
bucket_key = Math.floor(value / interval) * interval
----
[[calendar_and_fixed_intervals]]