From 112593b415f544ccdaaf817001d0cbaf230c7a6b Mon Sep 17 00:00:00 2001 From: Radhe Sravan Date: Sat, 23 Nov 2019 17:56:46 +0530 Subject: [PATCH] Fixed the typo in comments --- .../src/main/java/com/baeldung/list/CircularLinkedList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-structures/src/main/java/com/baeldung/list/CircularLinkedList.java b/data-structures/src/main/java/com/baeldung/list/CircularLinkedList.java index 24c73eff16..fc16246f11 100644 --- a/data-structures/src/main/java/com/baeldung/list/CircularLinkedList.java +++ b/data-structures/src/main/java/com/baeldung/list/CircularLinkedList.java @@ -18,7 +18,7 @@ public class CircularLinkedList { tail.nextNode = newNode; } - // Irrespective of whether or not elements are addNodeed, assign the + // Irrespective of whether or not elements are added, assign the // tail to newNode and the nextNode for tail as head tail = newNode; tail.nextNode = head;