Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 58982fb

Browse files
chalinchirayuk
authored andcommitted
docs(ng-repeat): fix name and move to <li>
- Moved the `ng-repeat` attribute from the `ul` to the `li` - Removed `$` prefix from `ng-repeat` variable `item`.
1 parent 786e22e commit 58982fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/directive/ng_repeat.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ class _Row {
7171
*
7272
* # Example:
7373
*
74-
* <ul ng-repeat="item in ['foo', 'bar', 'baz']">
75-
* <li>{{$item}}</li>
74+
* <ul>
75+
* <li ng-repeat="item in ['foo', 'bar', 'baz']">{{item}}</li>
7676
* </ul>
7777
*/
7878

0 commit comments

Comments
 (0)