Skip to content

Commit

Permalink
Merge pull request #1005 from yooungt13/patch-1
Browse files Browse the repository at this point in the history
Update jsx-closing-bracket-location.md
  • Loading branch information
yannickcr committed Jun 26, 2017
2 parents fd2fba1 + 3820096 commit 589113f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/rules/jsx-closing-bracket-location.md
Expand Up @@ -116,24 +116,24 @@ var x = function() {
// 'jsx-closing-bracket-location': [1, 'after-props']
<Hello
firstName="John"
lastName="Smith"
/>;
lastName="Smith" />;

<Say
firstName="John"
lastName="Smith"
>
lastName="Smith">
Hello
</Say>;

// 'jsx-closing-bracket-location': [1, 'props-aligned']
<Hello
firstName="John"
lastName="Smith" />;
lastName="Smith"
/>;

<Say
firstName="John"
lastName="Smith">
lastName="Smith"
>
Hello
</Say>;
```
Expand Down

0 comments on commit 589113f

Please sign in to comment.