From 70a8b2c67cd4dbc50aad9c8f098cf020eceebfa9 Mon Sep 17 00:00:00 2001 From: Matthieu Riegler Date: Sat, 20 Apr 2024 12:56:22 +0200 Subject: [PATCH] docs: fix links in `ng-template` fixes #55381 --- tools/manual_api_docs/elements/ng-template.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/manual_api_docs/elements/ng-template.md b/tools/manual_api_docs/elements/ng-template.md index b29a0e3a1ffb3..d062b5275d279 100644 --- a/tools/manual_api_docs/elements/ng-template.md +++ b/tools/manual_api_docs/elements/ng-template.md @@ -27,11 +27,11 @@ control over how and when the content is displayed. ### Structural Directives One of the main uses for `` is to hold template content that will be used -by [Structural directives](guide/structural-directives). Those directives can add and remove copies +by [Structural directives](guide/directives/structural-directives). Those directives can add and remove copies of the template content based on their own logic. When using -the [structural directive shorthand](guide/structural-directives#structural-directive-shorthand), +the [structural directive shorthand](guide/directives/structural-directives#structural-directive-shorthand), Angular creates an `` element behind the scenes. ### TemplateRef @@ -44,7 +44,7 @@ method `createEmbeddedView()`. ### Template Variables `` elements can be referenced in templates -using [standard template variables](guide/template-reference-variables#how-angular-assigns-values-to-template-variables). +using [standard template variables](guide/templates/reference-variables#how-angular-assigns-values-to-template-variables). *This is how `` elements are used as `ngIf` else clauses.*