From b44eb328e0fa7999082b6d83eac806f2c6b6770b Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Tue, 9 May 2017 23:51:23 +0100 Subject: [PATCH] docs(core): remove link to non-existent class in `InjectableDecorator` (#16653) Closes #16640 --- packages/core/src/di/metadata.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/di/metadata.ts b/packages/core/src/di/metadata.ts index 2a0cad479c..8d4c3a238c 100644 --- a/packages/core/src/di/metadata.ts +++ b/packages/core/src/di/metadata.ts @@ -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'}