From c9136ed70b04a3dbe03c01cd77948c109fff4fb1 Mon Sep 17 00:00:00 2001 From: Edgar Flores Date: Wed, 20 Jan 2016 10:47:21 -0800 Subject: [PATCH] docs(guide/Interpolation): describe your change... The links were not working, either `{` was missing or they were in the wrong location --- docs/content/guide/interpolation.ngdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/guide/interpolation.ngdoc b/docs/content/guide/interpolation.ngdoc index 2b53da63124..8b26ee10b35 100644 --- a/docs/content/guide/interpolation.ngdoc +++ b/docs/content/guide/interpolation.ngdoc @@ -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: @@ -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.