Skip to content

Commit

Permalink
Issue #787 Fix typos in no-vendor-prefixes rule documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastiaan van den Berg committed Jul 13, 2016
1 parent 6f5a509 commit a2deb23
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/rules/no-vendor-prefixes.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ When enabled, the following are disallowed:

### Additional Identifiers

When `additional-identifiers` contains a custom prefix value of `test` as show below
When `additional-identifiers` contains a custom prefix value of `khtml` as show below

```yaml
no-vendor-prefix:
no-vendor-prefixes:
- 1
-
'additional-identifiers':
- 'khtml'
additional-identifiers:
- khtml
```

The following would now also be disallowed
Expand All @@ -64,12 +64,12 @@ The following would now also be disallowed
When `excluded-identifiers` contains currently disallowed prefix values such as `webkit` and `moz` as show below

```yaml
no-vendor-prefix:
no-vendor-prefixes:
- 1
-
'excluded-identifiers':
- 'webkit'
- 'moz'
excluded-identifiers:
- webkit
- moz
```

The following would now be allowed
Expand Down

0 comments on commit a2deb23

Please sign in to comment.