diff --git a/aio/content/guide/schematics-authoring.md b/aio/content/guide/schematics-authoring.md index a7cd35b2ca..39a4fa1f98 100644 --- a/aio/content/guide/schematics-authoring.md +++ b/aio/content/guide/schematics-authoring.md @@ -89,7 +89,7 @@ For example, the hypothetical "Hello World" schematic might have the following s -You can see examples of schema files for the Angular CLI command schematics in [`@schematics/angular`](https://github.com/angular/angular-cli/blob/7.0.x/packages/schematics/angular/application/schema.json). +You can see examples of schema files for the Angular CLI command schematics in [`@schematics/angular`](https://github.com/angular/angular-cli/blob/master/packages/schematics/angular/application/schema.json). ### Schematic prompts diff --git a/aio/content/guide/workspace-config.md b/aio/content/guide/workspace-config.md index d82bbf7923..128313cf1c 100644 --- a/aio/content/guide/workspace-config.md +++ b/aio/content/guide/workspace-config.md @@ -81,7 +81,7 @@ Individual schematics for the default Angular CLI `ng generate` sub-commands are Specify the schematic name for a subcommand in the format `schematic-package:schematic-name`; for example, the schematic for generating a component is `@angular:component`. -The JSON schemas for the default schematics used by the CLI to generate projects and parts of projects are collected in the package [`@schematics/angular`](https://github.com/angular/angular-cli/blob/7.0.x/packages/schematics/angular/application/schema.json). +The JSON schemas for the default schematics used by the CLI to generate projects and parts of projects are collected in the package [`@schematics/angular`](https://github.com/angular/angular-cli/blob/master/packages/schematics/angular/application/schema.json). The schema describes the options available to the CLI for each of the `ng generate` sub-commands, as shown in the `--help` output. The fields given in the schema correspond to the allowed argument values and defaults for the CLI sub-command options.