diff --git a/data_structures/linked_list/circular_linked_list.py b/data_structures/linked_list/circular_linked_list.py index 290e30ebfad6..19d6ee6c6cb3 100644 --- a/data_structures/linked_list/circular_linked_list.py +++ b/data_structures/linked_list/circular_linked_list.py @@ -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)