docs(error/badrestrict): fix typo (of --> or)

Closes #15979
This commit is contained in:
Jake Danforth
2017-05-10 08:46:17 -07:00
committed by Georgios Kalpakas
parent eed13cf732
commit 92aef5d456
@@ -5,7 +5,7 @@
This error occurs when the restrict property of a directive is not valid.
The directive restrict property must be a string including one of more of the following characters:
The directive restrict property must be a string including one or more of the following characters:
* E (element)
* A (attribute)
* C (class)
@@ -15,4 +15,4 @@ For example:
```javascript
restrict: 'E'
restrict: 'EAC'
```
```