Skip to content

Commit

Permalink
fixup! Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhyndman committed Jun 7, 2016
1 parent a0bf03b commit 330fd55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/arrow-body-style.md
Expand Up @@ -4,7 +4,7 @@ Arrow functions can omit braces when there is a single statement in the body. Th

## Rule Details

Arrow functions have two syntactic forms for their function bodies. They may be defined with a *block* body (`() => { ... }`) or with a single expression (`() => ...`), whose value is implicitly returned.
Arrow functions have two syntactic forms for their function bodies. They may be defined with a *block* body (denoted by curly braces) `() => { ... }` or with a single expression `() => ...`, whose value is implicitly returned.

This rule may be used to standardize your usage and thus avoid syntactic ambiguity.

Expand Down

0 comments on commit 330fd55

Please sign in to comment.