From 3b1c4f72cea93803fb8e155b0ae149395426c26f Mon Sep 17 00:00:00 2001
From: NEERAJ ADITYANANTH POLAMPALLI
 <65017645+NEERAJAP2001@users.noreply.github.com>
Date: Sat, 5 Sep 2020 16:39:18 +0530
Subject: [PATCH] changed a typo (#2396)

---
 data_structures/linked_list/circular_linked_list.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data_structures/linked_list/circular_linked_list.py b/data_structures/linked_list/circular_linked_list.py
index 290e30ebf..19d6ee6c6 100644
--- a/data_structures/linked_list/circular_linked_list.py
+++ b/data_structures/linked_list/circular_linked_list.py
@@ -102,7 +102,7 @@ class CircularLinkedList:
 
     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)