changed a typo (#2396)

This commit is contained in:
NEERAJ ADITYANANTH POLAMPALLI 2020-09-05 16:39:18 +05:30 committed by GitHub
parent 1385e47c36
commit 3b1c4f72ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)