Skip to content

Commit 214c2b7

Browse files
Update Circular Linked List.md
1 parent b62e8d0 commit 214c2b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter3/Fundamental Data Structures/Summary/Circular Linked List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
private E element; // reference to the element stored at this node
88
private Node<E> next; // reference to the subsequent node in the list
99
```
10-
#### C LL class variables:
10+
#### CLL class variables:
1111
```java
1212
private Node<E> tail = null; // we store tail (but not head)
1313
private int size = 0; // number of nodes in the list

0 commit comments

Comments
 (0)