From 232b719fc5192075c03dd1fc07445982df718486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=86=B2?= Date: Sat, 21 Oct 2017 22:11:18 +0800 Subject: [PATCH] To Clarify the func-style description As "foo" is still meaningless, but with "short", we can see that, we are intend to use a short alias name to make our coding happily. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f2fe1dc1..2af76733 100644 --- a/README.md +++ b/README.md @@ -648,7 +648,7 @@ Other Style Guides // good // lexical name distinguished from the variable-referenced invocation(s) - const foo = function uniqueMoreDescriptiveLexicalFoo() { +    const short = function longUniqueMoreDescriptiveLexicalFoo() { // ... }; ```