From 97a68836215914c0ece2f221d1896a2e01f56a22 Mon Sep 17 00:00:00 2001 From: Liu Chong Date: Sun, 22 Oct 2017 14:10:35 +0800 Subject: [PATCH] Fix markdown style breaking It came from the special characters "M-BM-": ``` diff README.md README.md.new | cat -A 651c651$ < const foo = function uniqueMoreDescriptiveLexicalFoo() {$ ---$ > M-BM- M-BM- const short = function longUniqueMoreDescriptiveLexicalFoo() {$ ``` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2af76733c7..134abe9e3c 100644 --- a/README.md +++ b/README.md @@ -647,8 +647,8 @@ Other Style Guides }; // good - // lexical name distinguished from the variable-referenced invocation(s) -    const short = function longUniqueMoreDescriptiveLexicalFoo() { + // lexical name distinguished from the variable-referenced invocation(s) + const short = function longUniqueMoreDescriptiveLexicalFoo() { // ... }; ```