docs(aio): update AngularJS Quick Reference guide

PR Close #19939
This commit is contained in:
Mark Goho 2017-10-25 23:27:19 -04:00 committed by Matias Niemelä
parent 93d23ddcc8
commit 6fbc2b3be0
1 changed files with 2 additions and 2 deletions

View File

@ -380,7 +380,7 @@ The following are some of the key AngularJS built-in directives and their equiva
### ng-href
<code-example hideCopy format="">
&lt;a ng-href="angularDocsUrl">Angular Docs&lt;/a>
&lt;a ng-href="{{ angularDocsUrl }}">Angular Docs&lt;/a>
</code-example>
@ -390,7 +390,7 @@ The following are some of the key AngularJS built-in directives and their equiva
In AngularJS, the `ng-href` is often used to activate a route as part of navigation.
<code-example hideCopy format="">
&lt;a ng-href="#movies">Movies&lt;/a>
&lt;a ng-href="#{{ moviesHash }}">Movies&lt;/a>
</code-example>