From 8671f054191ad5e5cedf91c7c76999bea9b7bf7b Mon Sep 17 00:00:00 2001 From: Dimitar Nestorov Date: Tue, 13 Nov 2018 18:54:24 +0200 Subject: [PATCH] Update jsx-sort-props.md --- docs/rules/jsx-sort-props.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/jsx-sort-props.md b/docs/rules/jsx-sort-props.md index 9c2e2623ec..18914d2ce0 100644 --- a/docs/rules/jsx-sort-props.md +++ b/docs/rules/jsx-sort-props.md @@ -92,7 +92,7 @@ When `reservedFirst` is defined, React reserved props (`children`, `dangerouslyS If given as an array, the array's values will override the default list of reserved props. **Note**: the values in the array may only be a **subset** of React reserved props. -With `reservedFirst: [2, ["key"]]`, the following will **not** warn: +With `reservedFirst: ["key"]`, the following will **not** warn: ```jsx