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() {$
```
This commit is contained in:
Liu Chong
2017-10-22 14:10:35 +08:00
parent 232b719fc5
commit 97a6883621

View File

@@ -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() {
// ...
};
```