Commit f42b767
fix: incorrect 24 hour format comment example (#15649)
### What?
The code comment for type
`CollectionConfig.versions.drafts.schedulePublish.timeFormat` suggests
using 'hh:mm' for a 24 hour clock format. I changed this comment to
instead suggest 'HH:mm'.
### Why?
The lowercase 'hh' makes a 12 hour format, not the suggested 24 hour
format.
### How?
I replaced the comment to suggest using uppercase 'HH' instead.
```diff
- * @example 'hh:mm' will give a 24 hour clock
+ * @example 'HH:mm' will give a 24 hour clock
```
Co-authored-by: Paul Popus <paul@payloadcms.com>1 parent 122f4c1 commit f42b767
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
0 commit comments