docs(core): remove link to non-existent class in `InjectableDecorator` (#16653)

Closes #16640
This commit is contained in:
Pete Bacon Darwin 2017-05-09 23:51:23 +01:00 committed by Jason Aden
parent 7b4a8d53a7
commit b44eb328e0
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ export interface InjectableDecorator {
*
* {@example core/di/ts/metadata_spec.ts region='Injectable'}
*
* {@link Injector} will throw {@link NoAnnotationError} when trying to instantiate a class that
* {@link Injector} will throw an error when trying to instantiate a class that
* does not have `@Injectable` marker, as shown in the example below.
*
* {@example core/di/ts/metadata_spec.ts region='InjectableThrows'}