From a1c879668d9f1226d9b20b04880fa5d95147b03a Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Fri, 26 Apr 2013 13:09:40 -0700 Subject: [PATCH] f**k you && and || --- docs/CONTRIBUTING.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 49f9b173dd4..5b13530a331 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -59,7 +59,6 @@ Anyone wishing to contribute to the **[Discourse/Discourse](https://github.com/d * use spaces around operators, after commas, colons, semicolons, around `{` and before `}` * no space after `(`, `[` or before `]`, `)` * use Ruby 1.9 hash syntax: prefer `{ a: 1 }` over `{ :a => 1 }` - * use `&&` and `||` over `and`/`or` * prefer `class << self; def method; end` over `def class.method` for class methods * prefer `{ ... }` over `do ... end` for single-line blocks, avoid using `{ ... }` for multi-line blocks * avoid `return` when not required