From dafe3896a8414112c6c9b3beb46a5da5c8b61897 Mon Sep 17 00:00:00 2001 From: Michael Kolodny Date: Wed, 4 Dec 2013 15:00:22 -0500 Subject: [PATCH] fix contradictory example in Conditionals --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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