From 4272667385bac53a0fbaded09da38f65468e6392 Mon Sep 17 00:00:00 2001 From: Berry Phillips Date: Mon, 31 Mar 2014 16:47:57 -0700 Subject: [PATCH] Use only multi-line blocks with braces. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8c0be49f2..1fb25e7978 100644 --- a/README.md +++ b/README.md @@ -600,14 +600,14 @@ ## Blocks - - Use braces with all multi-line blocks. + - Use only multi-line blocks with braces. ```javascript // bad if (test) return false; - // good + // bad if (test) return false; // good