We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
var
1 parent 52a2da4 commit 6454839Copy full SHA for 6454839
README.md
@@ -158,13 +158,13 @@ Other Style Guides
158
159
```javascript
160
// bad
161
- const superman = {
+ var superman = {
162
default: { clark: 'kent' },
163
private: true,
164
};
165
166
// good
167
168
defaults: { clark: 'kent' },
169
hidden: true,
170
@@ -175,17 +175,17 @@ Other Style Guides
175
176
177
178
179
class: 'alien',
180
181
182
183
184
klass: 'alien',
185
186
187
188
189
type: 'alien',
190
191
```
0 commit comments