From 8a12ffed193ab985d438bed2a20aedb8b5faea1e Mon Sep 17 00:00:00 2001 From: Thomas Broadley Date: Fri, 15 Dec 2017 20:31:09 -0500 Subject: [PATCH] [guide] Fix spelling error in link (preserve old link for back-compat) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 71979c2b..43d36eb0 100644 --- a/README.md +++ b/README.md @@ -1754,8 +1754,8 @@ Other Style Guides } ``` - - - [14.3](#hoisting--named-expresions) Named function expressions hoist the variable name, not the function name or the function body. + + - [14.3](#hoisting--named-expressions) Named function expressions hoist the variable name, not the function name or the function body. ```javascript function example() { @@ -1957,7 +1957,7 @@ Other Style Guides const bar = a ** b - 5 % d; // bad - // one may be confused into thinking (a || b) && c + // one may be confused into thinking (a || b) && c if (a || b && c) { return d; }