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;