Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5a9f6c4

Browse files
authoredFeb 2, 2021
Merge pull request #2476 from seamissu/patch-3
fix typo: missing semicolon after let ladder = { }
2 parents 355c2e3 + 526b216 commit 5a9f6c4

File tree

1 file changed

+1
-1
lines changed
  • 1-js/04-object-basics/04-object-methods/8-chain-calls

1 file changed

+1
-1
lines changed
 

‎1-js/04-object-basics/04-object-methods/8-chain-calls/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let ladder = {
2121
return this;
2222
*/!*
2323
}
24-
}
24+
};
2525

2626
ladder.up().up().down().up().down().showStep(); // 1
2727
```

0 commit comments

Comments
 (0)
Please sign in to comment.