From 040355a4b4e107a392b32659167503cbfe37d0dd Mon Sep 17 00:00:00 2001 From: Brian Morearty Date: Wed, 1 Apr 2015 07:31:28 -0700 Subject: [PATCH] Use bang, not not. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ad8315..e1363bc 100644 --- a/README.md +++ b/README.md @@ -517,7 +517,7 @@ In either case: end ``` -* The `and` and `or` keywords are banned. It's just not worth it. Always use `&&` and `||` instead. +* The `and`, `or`, and `not` keywords are banned. It's just not worth it. Always use `&&`, `||`, and `!` instead. * Modifier `if/unless` usage is okay when the body is simple, the condition is simple, and the whole thing fits on one line. Otherwise,