docs(core): fix API docs for `Injector.get`

This commit is contained in:
Shai Reznik 2017-03-07 05:08:02 +02:00 committed by Victor Berchet
parent 0c36f2353d
commit 49162784a8
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export abstract class Injector {
*/
abstract get<T>(token: Type<T>|InjectionToken<T>, notFoundValue?: T): T;
/**
* @deprecated from v4.0.0 use Type<T> or InjectToken<T>
* @deprecated from v4.0.0 use Type<T> or InjectionToken<T>
* @suppress {duplicate}
*/
abstract get(token: any, notFoundValue?: any): any;