Skip to content

Commit b1129fa

Browse files
committed
2 parents e404265 + cd5efa0 commit b1129fa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/content/error/$compile/badrestrict.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
This error occurs when the restrict property of a directive is not valid.
77

8-
The directive restrict property must be a string including one of more of the following characters:
8+
The directive restrict property must be a string including one or more of the following characters:
99
* E (element)
1010
* A (attribute)
1111
* C (class)
@@ -15,4 +15,4 @@ For example:
1515
```javascript
1616
restrict: 'E'
1717
restrict: 'EAC'
18-
```
18+
```

src/ng/directive/ngRepeat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ var ngRepeatDirective = ['$parse', '$animate', '$compile', function($parse, $ani
429429
// Store a list of elements from previous run. This is a hash where key is the item from the
430430
// iterator, and the value is objects with following properties.
431431
// - scope: bound scope
432-
// - element: previous element.
432+
// - clone: previous element.
433433
// - index: position
434434
//
435435
// We are using no-proto object so that we don't need to guard against inherited props via

0 commit comments

Comments
 (0)