Skip to content

Commit f51f862

Browse files
committed
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2 parents 9bb12ab + 5e2e12d commit f51f862

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1344,7 +1344,7 @@ class MyClass {
13441344
static myStaticProp = 42;
13451345

13461346
constructor() {
1347-
console.log(MyClass.myProp); // 42
1347+
console.log(MyClass.myStaticProp); // 42
13481348
}
13491349
}
13501350
```

0 commit comments

Comments
 (0)