docs: remove unnecessary @linkDocs tags (#24000)

It is cleaner and simpler to use just a straightforward link.

PR Close #24000
This commit is contained in:
Pete Bacon Darwin
2018-05-18 12:19:29 +01:00
committed by Miško Hevery
parent e7b392bf3a
commit 38a0d1fac5
9 changed files with 39 additions and 39 deletions

View File

@ -13,7 +13,7 @@ import {InjectionToken} from '../di/injection_token';
* It is used for i18n extraction, by i18n pipes (DatePipe, I18nPluralPipe, CurrencyPipe,
* DecimalPipe and PercentPipe) and by ICU expressions.
*
* See the {@linkDocs guide/i18n#setting-up-locale i18n guide} for more information.
* See the [i18n guide](guide/i18n#setting-up-locale) for more information.
*
* ### Example
*
@ -35,7 +35,7 @@ export const LOCALE_ID = new InjectionToken<string>('LocaleId');
* Use this token at bootstrap to provide the content of your translation file (`xtb`,
* `xlf` or `xlf2`) when you want to translate your application in another language.
*
* See the {@linkDocs guide/i18n#merge i18n guide} for more information.
* See the [i18n guide](guide/i18n#merge) for more information.
*
* ### Example
*
@ -60,7 +60,7 @@ export const TRANSLATIONS = new InjectionToken<string>('Translations');
* Provide this token at bootstrap to set the format of your {@link TRANSLATIONS}: `xtb`,
* `xlf` or `xlf2`.
*
* See the {@linkDocs guide/i18n#merge i18n guide} for more information.
* See the [i18n guide](guide/i18n#merge) for more information.
*
* ### Example
*
@ -85,7 +85,7 @@ export const TRANSLATIONS_FORMAT = new InjectionToken<string>('TranslationsForma
* - Warning (default): show a warning in the console and/or shell.
* - Ignore: do nothing.
*
* See the {@linkDocs guide/i18n#missing-translation i18n guide} for more information.
* See the [i18n guide](guide/i18n#missing-translation) for more information.
*
* ### Example
* ```typescript