Skip to content

Commit bf3ad33

Browse files
authored
1 parent c750283 commit bf3ad33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/datastructures/lists/CircleLinkedList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ private Node(E value, Node<E> next) {
1919
private Node<E> head = null;
2020
private Node<E> tail = null; // keeping a tail pointer to keep track of the end of list
2121

22-
// constructer for class.. here we will make a dummy node for circly linked list implementation
22+
// constructor for class.. here we will make a dummy node for circly linked list implementation
2323
// with reduced error catching as our list will never be empty;
2424
public CircleLinkedList() {
2525
// creation of the dummy node

0 commit comments

Comments
 (0)