docs: fix templates bindings link (#60521)

PR Close #60521
This commit is contained in:
Hryhorii (Greg) Avcharov 2025-03-22 17:11:04 +01:00 committed by Alex Rickabaugh
parent 081f5f5a83
commit 00a9331fe8

View file

@ -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;