Skip to content

Commit

Permalink
docs: Update Z format docs (#683)
Browse files Browse the repository at this point in the history
Missing 0 in single digit hours
  • Loading branch information
simPod authored and iamkun committed Sep 27, 2019
1 parent 1063b0e commit 90e65a1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/en/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019'
| `s` | 0-59 | The second |
| `ss` | 00-59 | The second, 2-digits |
| `SSS` | 000-999 | The millisecond, 3-digits |
| `Z` | +5:00 | The offset from UTC |
| `Z` | +05:00 | The offset from UTC |
| `ZZ` | +0500 | The offset from UTC, 2-digits |
| `A` | AM PM | |
| `a` | am pm | |
Expand Down
2 changes: 1 addition & 1 deletion docs/es-es/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019'
| `s` | 0-59 | Segundos |
| `ss` | 00-59 | Segundos, con 2 dígitos |
| `SSS` | 000-999 | Milisegundos, con 3 dígitos |
| `Z` | +5:00 | Diferencia horaria UTC |
| `Z` | +05:00 | Diferencia horaria UTC |
| `ZZ` | +0500 | Diferencia horaria UTC, con 2 dígitos |
| `A` | AM PM | |
| `a` | am pm | |
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019'
| `s` | 0-59 ||
| `ss` | 00-59 | 2 桁の秒 |
| `SSS` | 000-999 | 3 桁のミリ秒 |
| `Z` | +5:00 | UTC からのオフセット |
| `Z` | +05:00 | UTC からのオフセット |
| `ZZ` | +0500 | UTC からの 2 桁のオフセット |
| `A` | AM PM | 午前と午後(大文字) |
| `a` | am pm | 午前と午後(小文字) |
Expand Down
2 changes: 1 addition & 1 deletion docs/ko/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019'
| `s` | 0-59 ||
| `ss` | 00-59 | 초, 두 자리로 표현 |
| `SSS` | 000-999 | 밀리 초, 3자리로 표현 |
| `Z` | +5:00 | UTC로부터 추가된 시간 |
| `Z` | +05:00 | UTC로부터 추가된 시간 |
| `ZZ` | +0500 | UTC로부터 추가된 시간, 두자리로 표현 |
| `A` | AM PM | |
| `a` | am pm | |
Expand Down
2 changes: 1 addition & 1 deletion docs/pt-br/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ dayjs('2019-01-25').format('DD/MM/YYYY') // '25/01/2019'
| `s` | 0-59 | Segundo |
| `ss` | 00-59 | Segundo, com 2 dígitos |
| `SSS` | 000-999 | Milisegundo, com 3 dígitos |
| `Z` | +5:00 | Diferença do fuso horário UTC |
| `Z` | +05:00 | Diferença do fuso horário UTC |
| `ZZ` | +0500 | Diferença do fuso horário UTC, com 2 dígitos |
| `A` | AM PM | |
| `a` | am pm | |
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/API-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ dayjs().format('{YYYY} MM-DDTHH:mm:ssZ[Z]') // "{2014} 09-08T08:02:17-05:00Z"
| `s` | 0-59 ||
| `ss` | 00-59 | 秒 两位数 |
| `SSS` | 000-999 | 毫秒 三位数 |
| `Z` | +5:00 | UTC 的偏移量 |
| `Z` | +05:00 | UTC 的偏移量 |
| `ZZ` | +0500 | UTC 的偏移量,数字前面加上 0 |
| `A` | AM PM | |
| `a` | am pm | |
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-cn/Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ dayjs('2018 五月 15', 'YYYY MMMM DD', 'zh_cn')
| `S` | 0-9 | 毫秒 一位数 |
| `SS` | 00-99 | 毫秒 两位数 |
| `SSS` | 000-999 | 毫秒 三位数 |
| `Z` | +5:00 | UTC 的偏移量 |
| `Z` | +05:00 | UTC 的偏移量 |
| `ZZ` | +0500 | UTC 的偏移量,数字前面加上 0 |
| `A` | AM PM | |
| `a` | am pm | |
Expand Down

0 comments on commit 90e65a1

Please sign in to comment.