Skip to content

Commit 9da4bdc

Browse files
jbogarthydehansl
authored andcommitted
docs: copy edit
Closes #12837. Closes #12898.
1 parent cf75a64 commit 9da4bdc

File tree

10 files changed

+16
-15
lines changed

10 files changed

+16
-15
lines changed

packages/angular/cli/commands/build-long.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Uses the Webpack build tool, with default configuration options specified in the workspace configuration file, `angular.json`, or with a named alternative configuration.
1+
Uses the [webpack](https://webpack.js.org/) build tool, with default configuration options specified in the workspace configuration file (`angular.json`) or with a named alternative configuration.
22
A "production" configuration is created by default when you use the CLI to create the project, and you can use that configuration by specifying the `--prod` option.
33

44
The configuration options generally correspond to the command options.

packages/angular/cli/commands/definitions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
]
2222
},
2323
"prod": {
24-
"description": "When true, sets the build configuration to the production target.\nAll builds make use of bundling and limited tree-shaking, A production build also runs limited dead code elimination.",
24+
"description": "When true, sets the build configuration to the production target.\nAll builds make use of bundling and limited tree-shaking. A production build also runs limited dead code elimination.",
2525
"type": "boolean"
2626
}
2727
}

packages/angular/cli/commands/run-long.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Architect is the tool that the CLI uses to perform complex tasks such as compilation, according to provided configurations.
2-
The CLI commands run Architect targets such as `build`, `serve`, `test` and `lint`.
2+
The CLI commands run Architect targets such as `build`, `serve`, `test`, and `lint`.
33
Each named target has a default configuration, specified by an "options" object,
44
and an optional set of named alternate configurations in the "configurations" object.
55

packages/angular/cli/commands/run.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/schema",
33
"$id": "ng-cli://commands/run.json",
4-
"description": "Runs an architect target with an optional custom builder configuration defined in your project.",
4+
"description": "Runs an Architect target with an optional custom builder configuration defined in your project.",
55
"$longDescription": "./run-long.md",
66

77
"$aliases": [],

packages/schematics/angular/application/schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
"default": false
2626
},
2727
"inlineStyle": {
28-
"description": "When true, includes styles inline in the root component TS file. Only CSS styles can be included inline. Default is false, meaning that an external styles file is created and referenced in the root component TS file.",
28+
"description": "When true, includes styles inline in the root component.ts file. Only CSS styles can be included inline. Default is false, meaning that an external styles file is created and referenced in the root component.ts file.",
2929
"type": "boolean",
3030
"default": false,
3131
"alias": "s"
3232
},
3333
"inlineTemplate": {
34-
"description": "When true, includes template inline in the root component TS file. Default is false, meaning that an external template file is created and referenced in the root component TS file. ",
34+
"description": "When true, includes template inline in the root component.ts file. Default is false, meaning that an external template file is created and referenced in the root component.ts file. ",
3535
"type": "boolean",
3636
"default": false,
3737
"alias": "t"

packages/schematics/angular/component/schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
"x-prompt": "What name would you like to use for the component?"
2929
},
3030
"inlineStyle": {
31-
"description": "When true, includes styles inline in the component TS file. Only CSS styles can be included inline. By default, an external styles file is created and referenced in the component TS file.",
31+
"description": "When true, includes styles inline in the component.ts file. Only CSS styles can be included inline. By default, an external styles file is created and referenced in the component.ts file.",
3232
"type": "boolean",
3333
"default": false,
3434
"alias": "s"
3535
},
3636
"inlineTemplate": {
37-
"description": "When true, includes template inline in the component TS file. By default, an external template file is created and referenced in the component TS file.",
37+
"description": "When true, includes template inline in the component.ts file. By default, an external template file is created and referenced in the component.ts file.",
3838
"type": "boolean",
3939
"default": false,
4040
"alias": "t"
+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
The e2e tests are created in a separate app, next to the project being tested in the `projects` folder of the workspace.
1+
The e2e tests are created in a separate app in the `projects` folder of the workspace,
2+
next to the project being tested.

packages/schematics/angular/ng-new/schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"default": false
3030
},
3131
"linkCli": {
32-
"description": "When true, links CLI to global version (internal development only).",
32+
"description": "When true, links the CLI to the global version (internal development only).",
3333
"type": "boolean",
3434
"default": false,
3535
"visible": false
@@ -138,7 +138,7 @@
138138
"default": true
139139
},
140140
"minimal": {
141-
"description": "When true, creates a barebones project without any testing frameworks.",
141+
"description": "When true, creates a project without any testing frameworks.",
142142
"type": "boolean",
143143
"default": false
144144
}

packages/schematics/angular/service/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"flat": {
3131
"type": "boolean",
3232
"default": true,
33-
"description": "When true (the default) creates files at the top level of the project."
33+
"description": "When true (the default), creates files at the top level of the project."
3434
},
3535
"spec": {
3636
"type": "boolean",

packages/schematics/angular/workspace/schema.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"default": false
2525
},
2626
"linkCli": {
27-
"description": "When true, link CLI to global version (internal development only).",
27+
"description": "When true, links the CLI to the global version (internal development only).",
2828
"type": "boolean",
2929
"default": false,
3030
"visible": false
3131
},
3232
"skipGit": {
33-
"description": "When true, do not initialize a git repository.",
33+
"description": "When true, does not initialize a git repository.",
3434
"type": "boolean",
3535
"default": false,
3636
"alias": "g"
@@ -70,7 +70,7 @@
7070
}
7171
},
7272
"minimal": {
73-
"description": "When true, creates a bare-bones project without any testing frameworks",
73+
"description": "When true, creates a project without any testing frameworks",
7474
"type": "boolean",
7575
"default": false
7676
}

0 commit comments

Comments
 (0)