mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-13 21:38:03 -05:00
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:
@@ -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() {
|
||||
// ...
|
||||
};
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user