From b91b3d7462b1bf680f47b5173734c243520b51b5 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Tue, 12 May 2020 16:13:27 +0200 Subject: [PATCH] docs(common): fix CLDR website link in FormStyle doc (#37069) The `FormStyle` enum offers two options, and the explanation of the difference between the two can be found on the CLDR official website. Sadly, the link changed and the one currently referenced is a dead-end. This commit fixes the link. PR Close #37069 --- packages/common/src/i18n/locale_data_api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/src/i18n/locale_data_api.ts b/packages/common/src/i18n/locale_data_api.ts index 94bbb3fabc..ef1321bade 100644 --- a/packages/common/src/i18n/locale_data_api.ts +++ b/packages/common/src/i18n/locale_data_api.ts @@ -47,7 +47,7 @@ export enum Plural { * Context-dependant translation forms for strings. * Typically the standalone version is for the nominative form of the word, * and the format version is used for the genitive case. - * @see [CLDR website](http://cldr.unicode.org/translation/date-time#TOC-Stand-Alone-vs.-Format-Styles) + * @see [CLDR website](http://cldr.unicode.org/translation/date-time-1/date-time#TOC-Standalone-vs.-Format-Styles) * @see [Internationalization (i18n) Guide](https://angular.io/guide/i18n) * * @publicApi