docs: remove unnecessary @linkDocs tags (#24000)

It is cleaner and simpler to use just a straightforward link.

PR Close #24000
This commit is contained in:
Pete Bacon Darwin
2018-05-18 12:19:29 +01:00
committed by Miško Hevery
parent e7b392bf3a
commit 38a0d1fac5
9 changed files with 39 additions and 39 deletions

View File

@ -44,7 +44,7 @@ export interface InjectableDecorator {
* @description
* A marker metadata that marks a class as available to {@link Injector} for creation.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"(guide/dependency-injection).
*
* ### Example
*

View File

@ -53,7 +53,7 @@ export class NullInjector implements Injector {
*
* Concrete injectors implement this interface.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*

View File

@ -31,7 +31,7 @@ export interface InjectDecorator {
* @description
* A parameter decorator that specifies a dependency.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -85,7 +85,7 @@ export interface OptionalDecorator {
* A parameter metadata that marks a dependency as optional.
* {@link Injector} provides `null` if the dependency is not found.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -130,7 +130,7 @@ export interface SelfDecorator {
* @description
* Specifies that an {@link Injector} should retrieve a dependency only from itself.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -176,7 +176,7 @@ export interface SkipSelfDecorator {
* @description
* Specifies that the dependency resolution should start from the parent injector.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -222,7 +222,7 @@ export interface HostDecorator {
* Specifies that an injector should retrieve a dependency from any injector until
* reaching the host element of the current component.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*

View File

@ -18,7 +18,7 @@ import {Type} from '../type';
* @description
* Configures the `Injector` to return a value for a token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -42,7 +42,7 @@ export interface ValueSansProvider {
* @description
* Configures the `Injector` to return a value for a token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -77,7 +77,7 @@ export interface ValueProvider extends ValueSansProvider {
* @description
* Configures the `Injector` to return an instance of `useClass` for a token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -111,7 +111,7 @@ export interface StaticClassSansProvider {
* @description
* Configures the `Injector` to return an instance of `useClass` for a token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -149,7 +149,7 @@ export interface StaticClassProvider extends StaticClassSansProvider {
* @description
* Configures the `Injector` to return an instance of a token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* @experimental
*/
@ -173,7 +173,7 @@ export interface ConstructorSansProvider {
* @description
* Configures the `Injector` to return an instance of a token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -208,7 +208,7 @@ export interface ConstructorProvider extends ConstructorSansProvider {
* @description
* Configures the `Injector` to return a value of another `useExisting` token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -232,7 +232,7 @@ export interface ExistingSansProvider {
* @description
* Configures the `Injector` to return a value of another `useExisting` token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -269,7 +269,7 @@ export interface ExistingProvider extends ExistingSansProvider {
* @description
* Configures the `Injector` to return a value by invoking a `useFactory` function.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -302,7 +302,7 @@ export interface FactorySansProvider {
* @description
* Configures the `Injector` to return a value by invoking a `useFactory` function.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -337,7 +337,7 @@ export interface FactoryProvider extends FactorySansProvider {
* @description
* Describes how the `Injector` should be configured in a static way (Without reflection).
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
*
*/
@ -360,7 +360,7 @@ export type StaticProvider = ValueProvider | ExistingProvider | StaticClassProvi
* Create an instance by invoking the `new` operator and supplying additional arguments.
* This form is a short form of `TypeProvider`;
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -383,7 +383,7 @@ export interface TypeProvider extends Type<any> {}
* @description
* Configures the `Injector` to return a value by invoking a `useClass` function.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -410,7 +410,7 @@ export interface ClassSansProvider {
* @description
* Configures the `Injector` to return an instance of `useClass` for a token.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
* ### Example
*
@ -445,7 +445,7 @@ export interface ClassProvider extends ClassSansProvider {
* @description
* Describes how the `Injector` should be configured.
*
* For more details, see the {@linkDocs guide/dependency-injection "Dependency Injection Guide"}.
* For more details, see the ["Dependency Injection Guide"](guide/dependency-injection).
*
*
*/