Skip to content

Commit 3b1c4f7

Browse files
authored
changed a typo (TheAlgorithms#2396)
1 parent 1385e47 commit 3b1c4f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/linked_list/circular_linked_list.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def append(self, data: Any) -> None:
102102

103103
def prepend(self, data: Any) -> None:
104104
"""
105-
Adds a ndoe with given data to the front of the CircularLinkedList
105+
Adds a node with given data to the front of the CircularLinkedList
106106
>>> cll = CircularLinkedList()
107107
>>> cll.prepend(1)
108108
>>> cll.prepend(2)

0 commit comments

Comments
 (0)