diff --git a/docs/rules/jsx-closing-bracket-location.md b/docs/rules/jsx-closing-bracket-location.md index ae183775d1..bcc14c86ec 100644 --- a/docs/rules/jsx-closing-bracket-location.md +++ b/docs/rules/jsx-closing-bracket-location.md @@ -116,24 +116,24 @@ var x = function() { // 'jsx-closing-bracket-location': [1, 'after-props'] ; + lastName="Smith" />; + lastName="Smith"> Hello ; // 'jsx-closing-bracket-location': [1, 'props-aligned'] ; + lastName="Smith" + />; + lastName="Smith" + > Hello ; ```