Fix some typos (#3038)

This commit is contained in:
Shuangchi He
2022-04-28 21:09:25 +08:00
committed by GitHub
parent 41be089f6a
commit 3ebba74e04
5 changed files with 5 additions and 5 deletions

View File

@ -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