Skip to content

Commit

Permalink
Use spaces and not tab
Browse files Browse the repository at this point in the history
The tenernary examples used tab instead of spaces for indentation.
That looked wrong on GitHub.
  • Loading branch information
aldipower committed Jan 21, 2016
1 parent 4afbd95 commit 05668a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coding-guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ Rules:

```JS
var title = !Util.isStringAndEmpty(props.title)
? <h3 className="h3">{props.title}</h3>
: null;
? <h3 className="h3">{props.title}</h3>
: null;
```

## JSX
Expand Down

0 comments on commit 05668a5

Please sign in to comment.