From 19d0b7d5ee0e575a09bf2e9634378b98e50980b1 Mon Sep 17 00:00:00 2001 From: Nicholas Lee Date: Wed, 12 Apr 2017 10:30:05 +0900 Subject: [PATCH] remove unnecessary indents --- types & grammar/ch4.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types & grammar/ch4.md b/types & grammar/ch4.md index 3e4ce9251..951bd43c7 100644 --- a/types & grammar/ch4.md +++ b/types & grammar/ch4.md @@ -1069,10 +1069,10 @@ function onlyOne() { var a = true; var b = false; -onlyOne( b, a ); // true -onlyOne( b, a, b, b, b ); // true +onlyOne( b, a ); // true +onlyOne( b, a, b, b, b ); // true -onlyOne( b, b ); // false +onlyOne( b, b ); // false onlyOne( b, a, b, b, b, a ); // false ``` @@ -1135,7 +1135,7 @@ while (c) { } c = d ? a : b; -c; // "abc" +c; // "abc" if ((a && d) || c) { console.log( "yep" ); // yep