docs(forms): remove unnecessary {@link Injector}
jsdoc tags (#23186)
Inline code blocks are automatically linked, if possible, to their API page. PR Close #23186
This commit is contained in:

committed by
Igor Minar

parent
1aef4df127
commit
92821e338b
@ -14,7 +14,7 @@ import {NgControl} from './ng_control';
|
||||
|
||||
|
||||
/**
|
||||
* An interface that {@link FormGroupDirective} and {@link NgForm} implement.
|
||||
* An interface that `FormGroupDirective` and `NgForm` implement.
|
||||
*
|
||||
* Only used by the forms module.
|
||||
*
|
||||
@ -32,7 +32,7 @@ export interface Form {
|
||||
removeControl(dir: NgControl): void;
|
||||
|
||||
/**
|
||||
* Look up the {@link FormControl} associated with a particular {@link NgControl}.
|
||||
* Look up the `FormControl` associated with a particular `NgControl`.
|
||||
*/
|
||||
getControl(dir: NgControl): FormControl;
|
||||
|
||||
@ -47,7 +47,7 @@ export interface Form {
|
||||
removeFormGroup(dir: AbstractFormGroupDirective): void;
|
||||
|
||||
/**
|
||||
* Look up the {@link FormGroup} associated with a particular {@link AbstractFormGroupDirective}.
|
||||
* Look up the `FormGroup` associated with a particular `AbstractFormGroupDirective`.
|
||||
*/
|
||||
getFormGroup(dir: AbstractFormGroupDirective): FormGroup;
|
||||
|
||||
|
Reference in New Issue
Block a user