mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 06:23:08 +08:00
Fix some typos (#3038)
This commit is contained in:
@ -90,7 +90,7 @@ public class CircleLinkedList<E> {
|
||||
}
|
||||
Node<E> destroy = before.next;
|
||||
E saved = destroy.value;
|
||||
// assigning the next reference to the the element following the element we want to remove...
|
||||
// assigning the next reference to the element following the element we want to remove...
|
||||
// the last element will be assigned to the head.
|
||||
before.next = before.next.next;
|
||||
// scrubbing
|
||||
|
Reference in New Issue
Block a user