Skip to content

Commit

Permalink
Merge pull request #1867 from peter-mouland/patch-4
Browse files Browse the repository at this point in the history
Fix JSX Syntax
  • Loading branch information
ljharb committed Jun 30, 2018
2 parents f27285f + 1615ae8 commit c3e57c7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/rules/jsx-one-expression-per-line.md
Expand Up @@ -20,15 +20,15 @@ The following patterns are considered warnings:
</Hello></App>

<App>
</Hello> World
<Hello /> World
</App>

<App>
</Hello> { 'World' }
<Hello /> { 'World' }
</App>

<App>
</Hello> { this.world() }
<Hello /> { this.world() }
</App>

<App>
Expand Down Expand Up @@ -64,17 +64,17 @@ The following patterns are **not** warnings:
</App>

<App>
</Hello>
<Hello />
World
</App>

<App>
</Hello>
<Hello />
{ 'World' }
</App>

<App>
</Hello>
<Hello />
{ this.world() }
</App>

Expand Down

0 comments on commit c3e57c7

Please sign in to comment.