[Docs] Fix Date Math example descriptions (#28125)

This commit is contained in:
Andrew Banchich 2018-01-08 10:55:48 -05:00 committed by Christoph Büscher
parent 49636992ac
commit a58dc8d82c
1 changed files with 2 additions and 2 deletions

View File

@ -218,8 +218,8 @@ The supported units are:
Assuming `now` is `2001-01-01 12:00:00`, some examples are:
`now+1h`:: `now` in milliseconds plus one hour. Resolves to: `2001-01-01 13:00:00`
`now-1h`:: `now` in milliseconds plus one hour. Resolves to: `2001-01-01 11:00:00`
`now-1h/d`:: `now` in milliseconds rounded down to UTC 00:00. Resolves to: `2001-01-01 00:00:00``
`now-1h`:: `now` in milliseconds minus one hour. Resolves to: `2001-01-01 11:00:00`
`now-1h/d`:: `now` in milliseconds minus one hour, rounded down to UTC 00:00. Resolves to: `2001-01-01 00:00:00``
`2001-01-01\|\|+1M/d`:: `now` in milliseconds plus one month. Resolves to: `2001-02-01 00:00:00`
[float]