Merge pull request #2476 from seamissu/patch-3

fix typo: missing semicolon after let ladder = { }
This commit is contained in:
Ilya Kantor 2021-02-02 11:17:11 +03:00 committed by GitHub
commit 5a9f6c4053
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
```