docs(directives): add # to for directive microsyntax example

This commit is contained in:
John Arstingstall 2015-04-06 13:54:47 -04:00 committed by Victor Berchet
parent 9c62b5867e
commit b7eea4f577
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ import {ListWrapper} from 'angular2/src/facade/collection';
*
* ```
* <ul>
* <li *for="error in errors; #i = index">
* <li *for="#error in errors; #i = index">
* Error {{i}} of {{errors.length}}: {{error.message}}
* </li>
* </ul>