Skip to content

Commit 83d8ebe

Browse files
committed
Fixed the typo in comments
1 parent 83696dd commit 83d8ebe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

data-structures/src/main/java/com/baeldung/list/CircularLinkedList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public void addNode(int value) {
1818
tail.nextNode = newNode;
1919
}
2020

21-
// Irrespective of whether or not elements are addNodeed, assign the
21+
// Irrespective of whether or not elements are added, assign the
2222
// tail to newNode and the nextNode for tail as head
2323
tail = newNode;
2424
tail.nextNode = head;

0 commit comments

Comments
 (0)