Skip to content

Commit 351ed19

Browse files
author
dmihaylo
committed
docs: test
1 parent 42bbf67 commit 351ed19

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/date-formatting/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,15 @@ Date formatting converts a `Date` object to a human-readable string using the lo
9797
The following specifiers can be used in the custom formats.
9898

9999
* **The `"G"` specifier**—Renders the era name.
100-
For the abbreviated name, use one to three letters. For the wide name, use four letters. For the narrow name, use five letters.
100+
For the abbreviated name, use one to three letters. For the wide name, use four letters. For the narrow name, use five letters.
101101

102102
import { formatDate } from '@telerik/kendo-intl';
103103

104104
formatDate(new Date(2000, 0, 1), "y G"); // 2000 AD
105105

106106
* **The `"y"` specifier**—Renders the year.
107-
To render the full year, use one letter. To render a two-digit year, use two letters. To render a zero-padded year, if necessary, use three or four letters.
107+
108+
To render the full year, use one letter. To render a two-digit year, use two letters. To render a zero-padded year, if necessary, use three or four letters.
108109

109110
import { formatDate } from '@telerik/kendo-intl';
110111

@@ -115,7 +116,8 @@ The following specifiers can be used in the custom formats.
115116
formatDate(new Date(111, 0, 1), "yyyy"); // 0111
116117

117118
* **The `"Q"` specifier**—Renders a quarter of the year.
118-
For the numerical quarter, use one or two letters. For the abbreviation, use three letters. For the wide name, use four letters. For the narrow name, use five letters.
119+
120+
For the numerical quarter, use one or two letters. For the abbreviation, use three letters. For the wide name, use four letters. For the narrow name, use five letters.
119121

120122
import { formatDate } from '@telerik/kendo-intl';
121123

0 commit comments

Comments
 (0)