From 6f3ee2ee4526f6a33d04c6a29260c565d7c4c556 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 9 May 2017 17:11:22 +0100 Subject: [PATCH] docs(core): remove link to non-existent class in `InjectableDecorator` 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 2a0cad479c67c..8d4c3a238c1e6 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'}