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