hotfix: move results table from date.monthDay to date.month

pull/4705/head
Scott Anderson 2023-01-13 16:20:13 -07:00
parent 704e7538dd
commit 0c9bbd0654
2 changed files with 14 additions and 16 deletions

View File

@ -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

View File

@ -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