diff --git a/src/main/java/com/thealgorithms/datastructures/lists/CircleLinkedList.java b/src/main/java/com/thealgorithms/datastructures/lists/CircleLinkedList.java index ed797480..1b42f2a4 100644 --- a/src/main/java/com/thealgorithms/datastructures/lists/CircleLinkedList.java +++ b/src/main/java/com/thealgorithms/datastructures/lists/CircleLinkedList.java @@ -19,7 +19,7 @@ public class CircleLinkedList { private Node head = null; private Node tail = null; // keeping a tail pointer to keep track of the end of list - // constructer for class.. here we will make a dummy node for circly linked list implementation + // constructor for class.. here we will make a dummy node for circly linked list implementation // with reduced error catching as our list will never be empty; public CircleLinkedList() { // creation of the dummy node