hotfix: move results table from date.monthDay to date.month
parent
704e7538dd
commit
0c9bbd0654
|
@ -28,7 +28,20 @@ Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
|
|||
|
||||
`date.month()` returns the month of a specified time. Results range from `[1 - 12]`.
|
||||
|
||||
|
||||
| Returned value | Month |
|
||||
| :------------: | :-------- |
|
||||
| 1 | January |
|
||||
| 2 | February |
|
||||
| 3 | March |
|
||||
| 4 | April |
|
||||
| 5 | May |
|
||||
| 6 | June |
|
||||
| 7 | July |
|
||||
| 8 | August |
|
||||
| 9 | September |
|
||||
| 10 | October |
|
||||
| 11 | November |
|
||||
| 12 | December |
|
||||
|
||||
##### Function type signature
|
||||
|
||||
|
|
|
@ -30,21 +30,6 @@ Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md
|
|||
`date.monthDay()` returns the day of the month for a specified time.
|
||||
Results range from `[1 - 31]`.
|
||||
|
||||
| Returned value | Month |
|
||||
| :------------: | :-------- |
|
||||
| 1 | January |
|
||||
| 2 | February |
|
||||
| 3 | March |
|
||||
| 4 | April |
|
||||
| 5 | May |
|
||||
| 6 | June |
|
||||
| 7 | July |
|
||||
| 8 | August |
|
||||
| 9 | September |
|
||||
| 10 | October |
|
||||
| 11 | November |
|
||||
| 12 | December |
|
||||
|
||||
##### Function type signature
|
||||
|
||||
```js
|
||||
|
|
Loading…
Reference in New Issue