Skip to content

Commit f52f043

Browse files
alan-agius4Keen Yee Liau
authored and
Keen Yee Liau
committed
docs: update descriptions
1 parent a53cf44 commit f52f043

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

packages/angular/cli/lib/config/schema.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
},
9494
"flat": {
9595
"type": "boolean",
96-
"description": "Flag to indicate if a dir is created.",
96+
"description": "Flag to indicate if a directory is created.",
9797
"default": false
9898
},
9999
"inlineStyle": {
@@ -157,7 +157,7 @@
157157
},
158158
"flat": {
159159
"type": "boolean",
160-
"description": "Flag to indicate if a dir is created.",
160+
"description": "Flag to indicate if a directory is created.",
161161
"default": true
162162
},
163163
"module": {
@@ -210,7 +210,7 @@
210210
},
211211
"flat": {
212212
"type": "boolean",
213-
"description": "Flag to indicate if a dir is created.",
213+
"description": "Flag to indicate if a directory is created.",
214214
"default": false
215215
},
216216
"commonModule": {
@@ -232,7 +232,7 @@
232232
"flat": {
233233
"type": "boolean",
234234
"default": true,
235-
"description": "Flag to indicate if a dir is created."
235+
"description": "Flag to indicate if a directory is created."
236236
},
237237
"spec": {
238238
"type": "boolean",
@@ -247,7 +247,7 @@
247247
"flat": {
248248
"type": "boolean",
249249
"default": true,
250-
"description": "Flag to indicate if a dir is created."
250+
"description": "Flag to indicate if a directory is created."
251251
},
252252
"spec": {
253253
"type": "boolean",

packages/schematics/angular/component/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
},
7878
"flat": {
7979
"type": "boolean",
80-
"description": "Flag to indicate if a dir is created.",
80+
"description": "Flag to indicate if a directory is created.",
8181
"default": false
8282
},
8383
"skipImport": {

packages/schematics/angular/directive/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
},
5858
"flat": {
5959
"type": "boolean",
60-
"description": "Flag to indicate if a dir is created.",
60+
"description": "Flag to indicate if a directory is created.",
6161
"default": true
6262
},
6363
"module": {

packages/schematics/angular/guard/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"flat": {
2222
"type": "boolean",
23-
"description": "Flag to indicate if a dir is created.",
23+
"description": "Flag to indicate if a directory is created.",
2424
"default": true
2525
},
2626
"path": {

packages/schematics/angular/module/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"flat": {
4141
"type": "boolean",
42-
"description": "Flag to indicate if a dir is created.",
42+
"description": "Flag to indicate if a directory is created.",
4343
"default": false
4444
},
4545
"commonModule": {

packages/schematics/angular/pipe/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"flat": {
3030
"type": "boolean",
3131
"default": true,
32-
"description": "Flag to indicate if a dir is created."
32+
"description": "Flag to indicate if a directory is created."
3333
},
3434
"spec": {
3535
"type": "boolean",

packages/schematics/angular/service/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"flat": {
3030
"type": "boolean",
3131
"default": true,
32-
"description": "Flag to indicate if a dir is created."
32+
"description": "Flag to indicate if a directory is created."
3333
},
3434
"spec": {
3535
"type": "boolean",

packages/schematics/angular/utility/config.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export interface CliConfig {
265265
*/
266266
component?: {
267267
/**
268-
* Flag to indicate if a dir is created.
268+
* Flag to indicate if a directory is created.
269269
*/
270270
flat?: boolean;
271271
/**
@@ -294,7 +294,7 @@ export interface CliConfig {
294294
*/
295295
directive?: {
296296
/**
297-
* Flag to indicate if a dir is created.
297+
* Flag to indicate if a directory is created.
298298
*/
299299
flat?: boolean;
300300
/**
@@ -307,7 +307,7 @@ export interface CliConfig {
307307
*/
308308
guard?: {
309309
/**
310-
* Flag to indicate if a dir is created.
310+
* Flag to indicate if a directory is created.
311311
*/
312312
flat?: boolean;
313313
/**
@@ -329,7 +329,7 @@ export interface CliConfig {
329329
*/
330330
module?: {
331331
/**
332-
* Flag to indicate if a dir is created.
332+
* Flag to indicate if a directory is created.
333333
*/
334334
flat?: boolean;
335335
/**
@@ -342,7 +342,7 @@ export interface CliConfig {
342342
*/
343343
pipe?: {
344344
/**
345-
* Flag to indicate if a dir is created.
345+
* Flag to indicate if a directory is created.
346346
*/
347347
flat?: boolean;
348348
/**
@@ -355,7 +355,7 @@ export interface CliConfig {
355355
*/
356356
service?: {
357357
/**
358-
* Flag to indicate if a dir is created.
358+
* Flag to indicate if a directory is created.
359359
*/
360360
flat?: boolean;
361361
/**

tests/angular_devkit/core/json/schema/serializers/schema_benchmark.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
"type": "object",
331331
"properties": {
332332
"flat": {
333-
"description": "Flag to indicate if a dir is created.",
333+
"description": "Flag to indicate if a directory is created.",
334334
"type": "boolean",
335335
"default": false
336336
},
@@ -366,7 +366,7 @@
366366
"type": "object",
367367
"properties": {
368368
"flat": {
369-
"description": "Flag to indicate if a dir is created.",
369+
"description": "Flag to indicate if a directory is created.",
370370
"type": "boolean",
371371
"default": true
372372
},
@@ -382,7 +382,7 @@
382382
"type": "object",
383383
"properties": {
384384
"flat": {
385-
"description": "Flag to indicate if a dir is created.",
385+
"description": "Flag to indicate if a directory is created.",
386386
"type": "boolean",
387387
"default": true
388388
},
@@ -409,7 +409,7 @@
409409
"type": "object",
410410
"properties": {
411411
"flat": {
412-
"description": "Flag to indicate if a dir is created.",
412+
"description": "Flag to indicate if a directory is created.",
413413
"type": "boolean",
414414
"default": false
415415
},
@@ -425,7 +425,7 @@
425425
"type": "object",
426426
"properties": {
427427
"flat": {
428-
"description": "Flag to indicate if a dir is created.",
428+
"description": "Flag to indicate if a directory is created.",
429429
"type": "boolean",
430430
"default": true
431431
},
@@ -441,7 +441,7 @@
441441
"type": "object",
442442
"properties": {
443443
"flat": {
444-
"description": "Flag to indicate if a dir is created.",
444+
"description": "Flag to indicate if a directory is created.",
445445
"type": "boolean",
446446
"default": true
447447
},

0 commit comments

Comments
 (0)