fix typo: missing semicolon after let ladder = { }

This commit is contained in:
seamissu 2021-01-30 04:26:38 +11:00 committed by GitHub
parent 97ef86242f
commit 526b216871
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ let ladder = {
return this;
*/!*
}
}
};
ladder.up().up().down().up().down().showStep(); // 1
```