diff --git a/docs/rules/jsx-sort-props.md b/docs/rules/jsx-sort-props.md index 4810b667f9..0250a66007 100644 --- a/docs/rules/jsx-sort-props.md +++ b/docs/rules/jsx-sort-props.md @@ -125,8 +125,8 @@ This can be a boolean or an array option. When `reservedFirst` is defined, React reserved props (`children`, `dangerouslySetInnerHTML` - **only for DOM components**, `key`, and `ref`) must be listed before all other props, but still respecting the alphabetical order: ```jsx - -
+ +
``` @@ -135,7 +135,7 @@ If given as an array, the array's values will override the default list of reser With `reservedFirst: ["key"]`, the following will **not** warn: ```jsx - + ``` ### `locale`