mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
style(ngRepeat): fix typos
This commit is contained in:
parent
5ec188f697
commit
14285568ca
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@
|
|||
* * `variable in expression track by tracking_expression` – You can also provide an optional tracking function
|
||||
* which can be used to associate the objects in the collection with the DOM elements. If no tractking function
|
||||
* is specified the ng-repeat associates elements by identity in the collection. It is an error to have
|
||||
* more then one tractking function to resolve to the same key. (This would mean that two distinct objects are
|
||||
* more than one tracking function to resolve to the same key. (This would mean that two distinct objects are
|
||||
* mapped to the same DOM element, which is not possible.)
|
||||
*
|
||||
* For example: `item in items` is equivalent to `item in items track by $id(item)'. This implies that the DOM elements
|
||||
|
|
|
|||
Loading…
Reference in a new issue