diff options
Diffstat (limited to 'src/datastructures/linkedlists/TaillessDoublyLinkedList.java')
-rw-r--r-- | src/datastructures/linkedlists/TaillessDoublyLinkedList.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastructures/linkedlists/TaillessDoublyLinkedList.java b/src/datastructures/linkedlists/TaillessDoublyLinkedList.java index bcc680c..0304ea9 100644 --- a/src/datastructures/linkedlists/TaillessDoublyLinkedList.java +++ b/src/datastructures/linkedlists/TaillessDoublyLinkedList.java @@ -26,7 +26,7 @@ package datastructures.linkedlists; * doublely linked list stores nodes with references * to both the following node and the previous node. * It also stores one refence nodes, the first node - * in the list. The implemention only implements + * in the list. This implemention only implements * methods that do not require iterating over all * nodes for find a specific; all other methods' — * those that are * implemented — time complexity |