Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,9 @@ Prefer single quoted strings (`''`) instead of double quoted (`""`) strings, unl
<a name="conditionals"/>
## Conditionals

Favor `unless` over `if` for negative conditions.
Favor `if` over `unless` for negative conditions.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sux


Instead of using `unless...else`, use `if...else`:
Use `if...else` rather than `unless...else`:

```coffeescript
# Yes
Expand Down