diff --git a/modules/angular2/src/core/di/exceptions.ts b/modules/angular2/src/core/di/exceptions.ts index 34dc7837e3..80fe0e7126 100644 --- a/modules/angular2/src/core/di/exceptions.ts +++ b/modules/angular2/src/core/di/exceptions.ts @@ -195,7 +195,7 @@ export class InvalidProviderError extends BaseException { * expect(() => Injector.resolveAndCreate([A])).toThrowError(); * ``` * - * This error is also thrown when the class not marked with {@link @Injectable} has parameter types. + * This error is also thrown when the class not marked with {@link Injectable} has parameter types. * * ```typescript * class B {} diff --git a/modules/angular2/src/core/di/injector.ts b/modules/angular2/src/core/di/injector.ts index ee90f6c20d..634a60668a 100644 --- a/modules/angular2/src/core/di/injector.ts +++ b/modules/angular2/src/core/di/injector.ts @@ -457,7 +457,7 @@ export class Injector { * }); * ``` * - * See {@link fromResolvedProviders} for more info. + * See {@link Injector#fromResolvedProviders} for more info. */ static resolve(providers: Array): ResolvedProvider[] { return resolveProviders(providers); @@ -487,7 +487,7 @@ export class Injector { * * This function is slower than the corresponding `fromResolvedProviders` * because it needs to resolve the passed-in providers first. - * See {@link resolve} and {@link fromResolvedProviders}. + * See {@link Injector#resolve} and {@link Injector#fromResolvedProviders}. */ static resolveAndCreate(providers: Array): Injector { var resolvedProviders = Injector.resolve(providers); @@ -658,7 +658,7 @@ export class Injector { * * This function is slower than the corresponding `createChildFromResolved` * because it needs to resolve the passed-in providers first. - * See {@link resolve} and {@link createChildFromResolved}. + * See {@link Injector#resolve} and {@link Injector#createChildFromResolved}. */ resolveAndCreateChild(providers: Array): Injector { var resolvedProviders = Injector.resolve(providers); diff --git a/modules/angular2/src/core/di/provider.ts b/modules/angular2/src/core/di/provider.ts index a5d8389f11..3e0acd9510 100644 --- a/modules/angular2/src/core/di/provider.ts +++ b/modules/angular2/src/core/di/provider.ts @@ -57,7 +57,7 @@ const _EMPTY_LIST = CONST_EXPR([]); @CONST() export class Provider { /** - * Token used when retrieving this provider. Usually, it is a type {@link `Type`}. + * Token used when retrieving this provider. Usually, it is a type {@link Type}. */ token;