From bf3ad33d346e989b3e50f92aad47f88bc259331d Mon Sep 17 00:00:00 2001 From: Speecker Date: Mon, 27 Jun 2022 07:36:39 +0200 Subject: [PATCH] Fix typo (#3167) --- .../thealgorithms/datastructures/lists/CircleLinkedList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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