Delete excess semicolon in 1.9.1 (Class basic syntax)

This commit is contained in:
Vse Mozhe Buty 2020-10-27 18:30:17 +02:00 committed by GitHub
parent 2d5be7b730
commit 0682ae7c65
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);
}; }
}; };
} }