Merge pull request #2238 from vsemozhetbyt/patch-10

Delete excess semicolon in 1.9.1 (Class basic syntax)
This commit is contained in:
Ilya Kantor 2020-10-29 19:52:53 +03:00 committed by GitHub
commit a6f101c507
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -218,7 +218,7 @@ function makeClass(phrase) {
return class { return class {
sayHi() { sayHi() {
alert(phrase); alert(phrase);
}; }
}; };
} }