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:

committed by
Igor Minar

parent
9d9fb607cd
commit
b8053f1d4f
@ -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();
|
||||
|
@ -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"}
|
||||
*
|
||||
|
Reference in New Issue
Block a user