Skip to content

Commit e89e4a9

Browse files
eduardbardevBienna
authored andcommitted
fixing readme title
1 parent ce3f8e9 commit e89e4a9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Airbnb JavaScript Style Guide() {
1+
# Airbnb JavaScript Style Guide
22

33
*A mostly reasonable approach to JavaScript*
44

@@ -2133,8 +2133,8 @@ Other Style Guides
21332133
```javascript
21342134
// bad
21352135
const foo = maybe1 > maybe2
2136-
? "bar"
2137-
: value1 > value2 ? "baz" : null;
2136+
? 'bar'
2137+
: value1 > value2 ? 'baz' : null;
21382138
21392139
// split into 2 separated ternary expressions
21402140
const maybeNull = value1 > value2 ? 'baz' : null;

0 commit comments

Comments
 (0)