Skip to content

Commit

Permalink
changed a typo (TheAlgorithms#2396)
Browse files Browse the repository at this point in the history
  • Loading branch information
NEERAJAP2001 authored Sep 5, 2020
1 parent 1385e47 commit 3b1c4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_structures/linked_list/circular_linked_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def append(self, data: Any) -> None:

def prepend(self, data: Any) -> None:
"""
Adds a ndoe with given data to the front of the CircularLinkedList
Adds a node with given data to the front of the CircularLinkedList
>>> cll = CircularLinkedList()
>>> cll.prepend(1)
>>> cll.prepend(2)
Expand Down

0 comments on commit 3b1c4f7

Please sign in to comment.