Skip to content

Commit

Permalink
Fix if-else typo in docs. (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
parkerziegler authored and chenglou committed May 10, 2018
1 parent e42d17e commit 28dd1a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/if-else.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let message = if (isMorning) {
};
```

**Note:** an `if-elseif-else` expression without the final `else` branch implicitly gives `()`. So this:
**Note:** an `if-else` expression without the final `else` branch implicitly gives `()`. So this:

```reason
if (showMenu) {
Expand Down

0 comments on commit 28dd1a2

Please sign in to comment.