Skip to content

Commit 0e3aa4d

Browse files
committed
docs: fix links
1 parent c949303 commit 0e3aa4d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/dates.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export interface DateFormatOptions {
8989
* Converts a `Date` object into a string based on the specified format and locale.
9090
* {% platform_content angular %}
9191
* For a runnable example, refer to the article on
92-
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-date-formatting).
92+
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-date-formatting).
9393
* {% endplatform_content %}
9494
*
9595
* @param value - Defines the date that will be formatted.
@@ -103,7 +103,7 @@ export function formatDate(value: Date, format: string|DateFormatOptions, locale
103103
* Converts a string into a `Date` object based on the specified format and locale
104104
* {% platform_content angular %}
105105
* For a runnable example, refer to the article on
106-
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-date-parsing).
106+
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-date-parsing).
107107
* {% endplatform_content %}
108108
*
109109
* @param value - Defines the string that will be parsed.

src/numbers.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Settings for the `formatNumber` and `parseNumber` functions.
33
* {% platform_content angular %}
44
* For a runnable example, refer to the article on
5-
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-number-formatting).
5+
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-number-formatting).
66
* {% endplatform_content %}
77
*/
88
export interface NumberFormatOptions {
@@ -55,7 +55,7 @@ export interface NumberFormatOptions {
5555
* Converts a string into a `Number` based on the specified locale.
5656
* {% platform_content angular %}
5757
* For a runnable example, refer to the article on
58-
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-number-parsing).
58+
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-number-parsing).
5959
* {% endplatform_content %}
6060
*
6161
* @param value - The string that will be parsed.
@@ -69,7 +69,7 @@ export function parseNumber(value: string, locale?: string, format?: string|Numb
6969
* Converts a `Number` into a string based on the specified format and locale.
7070
* {% platform_content angular %}
7171
* For a runnable example, refer to the article on
72-
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-number-formatting).
72+
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-number-formatting).
7373
* {% endplatform_content %}
7474
*
7575
* @param value - The number that will be formatted.

0 commit comments

Comments
 (0)