Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Update badrestrict.ngdoc #15979

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/error/$compile/badrestrict.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -15,4 +15,4 @@ For example:
```javascript
restrict: 'E'
restrict: 'EAC'
```
```