Skip to content

Commit

Permalink
docs: fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
tsvetomir committed May 20, 2019
1 parent c949303 commit 0e3aa4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/dates.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export interface DateFormatOptions {
* Converts a `Date` object into a string based on the specified format and locale.
* {% platform_content angular %}
* For a runnable example, refer to the article on
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-date-formatting).
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-date-formatting).
* {% endplatform_content %}
*
* @param value - Defines the date that will be formatted.
Expand All @@ -103,7 +103,7 @@ export function formatDate(value: Date, format: string|DateFormatOptions, locale
* Converts a string into a `Date` object based on the specified format and locale
* {% platform_content angular %}
* For a runnable example, refer to the article on
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-date-parsing).
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-date-parsing).
* {% endplatform_content %}
*
* @param value - Defines the string that will be parsed.
Expand Down
6 changes: 3 additions & 3 deletions src/numbers.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Settings for the `formatNumber` and `parseNumber` functions.
* {% platform_content angular %}
* For a runnable example, refer to the article on
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-number-formatting).
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-number-formatting).
* {% endplatform_content %}
*/
export interface NumberFormatOptions {
Expand Down Expand Up @@ -55,7 +55,7 @@ export interface NumberFormatOptions {
* Converts a string into a `Number` based on the specified locale.
* {% platform_content angular %}
* For a runnable example, refer to the article on
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-number-parsing).
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-number-parsing).
* {% endplatform_content %}
*
* @param value - The string that will be parsed.
Expand All @@ -69,7 +69,7 @@ export function parseNumber(value: string, locale?: string, format?: string|Numb
* Converts a `Number` into a string based on the specified format and locale.
* {% platform_content angular %}
* For a runnable example, refer to the article on
* [date and number formatting and parsing]({% parsingandformatting_intl %}#toc-number-formatting).
* [date and number formatting and parsing]({% slug parsingandformatting_intl %}#toc-number-formatting).
* {% endplatform_content %}
*
* @param value - The number that will be formatted.
Expand Down

0 comments on commit 0e3aa4d

Please sign in to comment.