Angular: clarify meaning of `@Injectable` decorator

This commit is contained in:
Ben Elliott 2018-06-25 23:38:03 +01:00
parent 9ceff1bca6
commit b539d713b7
1 changed files with 1 additions and 2 deletions

View File

@ -185,8 +185,7 @@ class MyDirective() {}
@Pipe({...})
class MyPipe() {}
// Declares that a class has dependencies that should be injected into the constructor when the
// dependency injector is creating an instance of this class.
// Declares that a class can be injected into the constructor of another class by the dependency injector.
@Injectable()
class MyService() {}