diff --git a/public/docs/ts/latest/guide/dependency-injection.jade b/public/docs/ts/latest/guide/dependency-injection.jade index 759f303791..4a6b7aaf86 100644 --- a/public/docs/ts/latest/guide/dependency-injection.jade +++ b/public/docs/ts/latest/guide/dependency-injection.jade @@ -432,7 +432,8 @@ block injectable-not-always-needed-in-ts :marked Injectors use a class's constructor metadata to determine dependent types as identified by the constructor's parameter types. - TypeScript generates such metadata for any class with a decorator, and any decorator will do. + TypeScript generates such metadata for any class with a decorator (if + `emitDecoratorMetadata` compiler option is set to true), and any decorator will do. But of course, it is more meaningful to mark a class using the appropriate InjectableMetadata #{_decorator}.