From 00a9331fe8febe31c8fb7fba10e28be1d821f2f9 Mon Sep 17 00:00:00 2001 From: "Hryhorii (Greg) Avcharov" Date: Sat, 22 Mar 2025 17:11:04 +0100 Subject: [PATCH] docs: fix templates bindings link (#60521) PR Close #60521 --- adev/src/content/guide/templates/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/templates/variables.md b/adev/src/content/guide/templates/variables.md index 8e3d2862801..4737be41518 100644 --- a/adev/src/content/guide/templates/variables.md +++ b/adev/src/content/guide/templates/variables.md @@ -8,7 +8,7 @@ Angular's `@let` syntax allows you to define a local variable and re-use it acro ### Using `@let` -Use `@let` to declare a variable whose value is based on the result of a template expression. Angular automatically keeps the variable's value up-to-date with the given expression, similar to [bindings](./bindings). +Use `@let` to declare a variable whose value is based on the result of a template expression. Angular automatically keeps the variable's value up-to-date with the given expression, similar to [bindings](./templates/bindings). ```angular-html @let name = user.name;