diff --git a/README.md b/README.md index 033feca..606908a 100644 --- a/README.md +++ b/README.md @@ -299,9 +299,9 @@ Prefer single quoted strings (`''`) instead of double quoted (`""`) strings, unl ## Conditionals -Favor `unless` over `if` for negative conditions. +Favor `if` over `unless` for negative conditions. -Instead of using `unless...else`, use `if...else`: +Use `if...else` rather than `unless...else`: ```coffeescript # Yes