aboutsummaryrefslogtreecommitdiffstats
path: root/src/datastructures/linkedlists/DoublyLinkedList.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/datastructures/linkedlists/DoublyLinkedList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastructures/linkedlists/DoublyLinkedList.java b/src/datastructures/linkedlists/DoublyLinkedList.java
index 334eee5..7bb091d 100644
--- a/src/datastructures/linkedlists/DoublyLinkedList.java
+++ b/src/datastructures/linkedlists/DoublyLinkedList.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 two refence nodes, the first node
- * in the list, and the last node in the list. The
+ * in the list, and the last node 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