From a2deb23b7b839a2945510d0d04dcf383109a22fe Mon Sep 17 00:00:00 2001 From: Bastiaan van den Berg Date: Wed, 13 Jul 2016 20:25:38 +0200 Subject: [PATCH] Issue #787 Fix typos in no-vendor-prefixes rule documentation. --- docs/rules/no-vendor-prefixes.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/rules/no-vendor-prefixes.md b/docs/rules/no-vendor-prefixes.md index 22bd1567..957f9cf3 100644 --- a/docs/rules/no-vendor-prefixes.md +++ b/docs/rules/no-vendor-prefixes.md @@ -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 @@ -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