Skip to content

Commit 43b027f

Browse files
JeanMechepkozlowski-opensource
authored andcommitted
docs: fix label on API link. (#54621)
Remove the unecessary double quotes on a @see link. PR Close #54621
1 parent e7eadd9 commit 43b027f

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

packages/core/src/di/interface/provider.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface ValueSansProvider {
2323

2424
/**
2525
* Configures the `Injector` to return a value for a token.
26-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
26+
* @see [Dependency Injection Guide](guide/dependency-injection).
2727
*
2828
* @usageNotes
2929
*
@@ -72,7 +72,7 @@ export interface StaticClassSansProvider {
7272

7373
/**
7474
* Configures the `Injector` to return an instance of `useClass` for a token.
75-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
75+
* @see [Dependency Injection Guide](guide/dependency-injection).
7676
*
7777
* @usageNotes
7878
*
@@ -104,7 +104,7 @@ export interface StaticClassProvider extends StaticClassSansProvider {
104104
/**
105105
* Configures the `Injector` to return an instance of a token.
106106
*
107-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
107+
* @see [Dependency Injection Guide](guide/dependency-injection).
108108
*
109109
* @usageNotes
110110
*
@@ -125,7 +125,7 @@ export interface ConstructorSansProvider {
125125
/**
126126
* Configures the `Injector` to return an instance of a token.
127127
*
128-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
128+
* @see [Dependency Injection Guide](guide/dependency-injection).
129129
*
130130
* @usageNotes
131131
*
@@ -154,7 +154,7 @@ export interface ConstructorProvider extends ConstructorSansProvider {
154154
* Configures the `Injector` to return a value of another `useExisting` token.
155155
*
156156
* @see {@link ExistingProvider}
157-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
157+
* @see [Dependency Injection Guide](guide/dependency-injection).
158158
*
159159
* @publicApi
160160
*/
@@ -168,7 +168,7 @@ export interface ExistingSansProvider {
168168
/**
169169
* Configures the `Injector` to return a value of another `useExisting` token.
170170
*
171-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
171+
* @see [Dependency Injection Guide](guide/dependency-injection).
172172
*
173173
* @usageNotes
174174
*
@@ -197,7 +197,7 @@ export interface ExistingProvider extends ExistingSansProvider {
197197
* Configures the `Injector` to return a value by invoking a `useFactory` function.
198198
*
199199
* @see {@link FactoryProvider}
200-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
200+
* @see [Dependency Injection Guide](guide/dependency-injection).
201201
*
202202
* @publicApi
203203
*/
@@ -217,7 +217,7 @@ export interface FactorySansProvider {
217217

218218
/**
219219
* Configures the `Injector` to return a value by invoking a `useFactory` function.
220-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
220+
* @see [Dependency Injection Guide](guide/dependency-injection).
221221
*
222222
* @usageNotes
223223
*
@@ -251,7 +251,7 @@ export interface FactoryProvider extends FactorySansProvider {
251251
* A static provider provides tokens to an injector for various types of dependencies.
252252
*
253253
* @see {@link Injector.create()}
254-
* @see ["Dependency Injection Guide"](guide/dependency-injection-providers).
254+
* @see [Dependency Injection Guide](guide/dependency-injection-providers).
255255
*
256256
* @publicApi
257257
*/
@@ -279,7 +279,7 @@ export interface TypeProvider extends Type<any> {}
279279
* Configures the `Injector` to return a value by invoking a `useClass` function.
280280
* Base for `ClassProvider` decorator.
281281
*
282-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
282+
* @see [Dependency Injection Guide](guide/dependency-injection).
283283
*
284284
* @publicApi
285285
*/
@@ -292,7 +292,7 @@ export interface ClassSansProvider {
292292

293293
/**
294294
* Configures the `Injector` to return an instance of `useClass` for a token.
295-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
295+
* @see [Dependency Injection Guide](guide/dependency-injection).
296296
*
297297
* @usageNotes
298298
*
@@ -323,7 +323,7 @@ export interface ClassProvider extends ClassSansProvider {
323323

324324
/**
325325
* Describes how the `Injector` should be configured.
326-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
326+
* @see [Dependency Injection Guide](guide/dependency-injection).
327327
*
328328
* @see {@link StaticProvider}
329329
*

packages/core/src/di/metadata.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface InjectDecorator {
3232
* <code-example path="core/di/ts/metadata_spec.ts" region="InjectWithoutDecorator">
3333
* </code-example>
3434
*
35-
* @see ["Dependency Injection Guide"](guide/dependency-injection)
35+
* @see [Dependency Injection Guide](guide/dependency-injection)
3636
*
3737
*/
3838
(token: any): any;
@@ -83,7 +83,7 @@ export interface OptionalDecorator {
8383
* <code-example path="core/di/ts/metadata_spec.ts" region="Optional">
8484
* </code-example>
8585
*
86-
* @see ["Dependency Injection Guide"](guide/dependency-injection).
86+
* @see [Dependency Injection Guide](guide/dependency-injection).
8787
*/
8888
(): any;
8989
new(): Optional;

0 commit comments

Comments
 (0)