diff --git a/aio/content/guide/accessibility.md b/aio/content/guide/accessibility.md index 600804ace0..6d6714ffb0 100644 --- a/aio/content/guide/accessibility.md +++ b/aio/content/guide/accessibility.md @@ -44,7 +44,7 @@ NOTE: By convention, HTML attributes use lowercase names (`tabindex`), while properties use camelCase names (`tabIndex`). - See the [Template Syntax](https://angular.io/guide/template-syntax#html-attribute-vs-dom-property) guide for more background on the difference between attributes and properties. + See the [Template Syntax](guide/template-syntax#html-attribute-vs-dom-property) guide for more background on the difference between attributes and properties. diff --git a/aio/content/guide/deployment.md b/aio/content/guide/deployment.md index f95c64c781..b79fc2fb7d 100644 --- a/aio/content/guide/deployment.md +++ b/aio/content/guide/deployment.md @@ -55,7 +55,7 @@ This method is for development and testing only, and is not a supported or secur ### Automatic deployment with the CLI -The Angular CLI command `ng deploy` (introduced in version 8.3.0) executes the `deploy` [CLI builder](https://angular.io/guide/cli-builder) associated with your project. A number of third-party builders implement deployment capabilities to different platforms. You can add any of them to your project by running `ng add [package name]`. +The Angular CLI command `ng deploy` (introduced in version 8.3.0) executes the `deploy` [CLI builder](guide/cli-builder) associated with your project. A number of third-party builders implement deployment capabilities to different platforms. You can add any of them to your project by running `ng add [package name]`. When you add a package with deployment capability, it'll automatically update your workspace configuration (`angular.json` file) with a `deploy` section for the selected project. You can then use the `ng deploy` command to deploy that project. diff --git a/aio/content/guide/file-structure.md b/aio/content/guide/file-structure.md index 536fa7033b..5671ba7f19 100644 --- a/aio/content/guide/file-structure.md +++ b/aio/content/guide/file-structure.md @@ -72,7 +72,7 @@ Files at the top level of `src/` support testing and running your application. S | `environments/` | Contains build configuration options for particular target environments. By default there is an unnamed standard development environment and a production ("prod") environment. You can define additional target environment configurations. | | `favicon.ico` | An icon to use for this application in the bookmark bar. | | `index.html` | The main HTML page that is served when someone visits your site. The CLI automatically adds all JavaScript and CSS files when building your app, so you typically don't need to add any `