diff --git a/data-structures-&-algorithms/oop-continued/lesson-notes/README.md b/data-structures-&-algorithms/oop-continued/lesson-notes/README.md index f1c11944..0497c2f6 100644 --- a/data-structures-&-algorithms/oop-continued/lesson-notes/README.md +++ b/data-structures-&-algorithms/oop-continued/lesson-notes/README.md @@ -253,7 +253,7 @@ Now, let's add the different suits: class DeckOfCards { constructor() { this.cards = []; - this.crecards(); + this.createDeck(); } createDeck() { const suits = ["Hearts", "Diamonds", "Clubs", "Spades"];