Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Fixing links in Interpolation dev guide #13809

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/content/guide/interpolation.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Interpolation and data-binding

Interpolation markup with embedded @link {guide/expressions expressions} is used by Angular to
Interpolation markup with embedded {@link guide/expressions expressions} is used by Angular to
provide data-binding to text nodes and attribute values.

An example of interpolation is shown below:
Expand Down Expand Up @@ -43,8 +43,8 @@ interpret the attribute as present, meaning that the button would always be disa
```

For this reason, Angular provides special `ng`-prefixed directives for the following boolean attributes:
{@link ngDisabled `disabled`}, [@link ngRequired `required`}, [@link ngSelected `selected`},
{@link ngChecked `checked`}, {@link ngReadonly `readOnly`} , and [@link ngOpen `open`}.
{@link ngDisabled `disabled`}, {@link ngRequired `required`}, {@link ngSelected `selected`},
{@link ngChecked `checked`}, {@link ngReadonly `readOnly`} , and {@link ngOpen `open`}.

These directives take an expression inside the attribute, and set the corresponding boolean attribute
to true when the expression evaluates to truthy.
Expand Down