docs(upgrade): remove unnecessary {@link... } tags (#23197)

Backtick enclosed inline code blocks will be automatically linked
if appropriate.

PR Close #23197
This commit is contained in:
Pete Bacon Darwin
2018-04-05 16:41:52 +01:00
committed by Igor Minar
parent 9d9fb607cd
commit b8053f1d4f
5 changed files with 19 additions and 19 deletions

View File

@ -244,14 +244,14 @@ try {
}
/**
* @deprecated Use {@link setAngularJSGlobal} instead.
* @deprecated Use `setAngularJSGlobal` instead.
*/
export function setAngularLib(ng: any): void {
setAngularJSGlobal(ng);
}
/**
* @deprecated Use {@link getAngularJSGlobal} instead.
* @deprecated Use `getAngularJSGlobal` instead.
*/
export function getAngularLib(): any {
return getAngularJSGlobal();

View File

@ -22,13 +22,13 @@ import {INJECTOR_KEY} from './constants';
*
* ### Examples
*
* First ensure that the service to be downgraded is provided in an {@link NgModule}
* First ensure that the service to be downgraded is provided in an `NgModule`
* that will be part of the upgrade application. For example, let's assume we have
* defined `HeroesService`
*
* {@example upgrade/static/ts/module.ts region="ng2-heroes-service"}
*
* and that we have included this in our upgrade app {@link NgModule}
* and that we have included this in our upgrade app `NgModule`
*
* {@example upgrade/static/ts/module.ts region="ng2-module"}
*