aboutsummaryrefslogtreecommitdiffstats
path: root/src/datastructures/linkedlists/SinglyLinkedList.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/datastructures/linkedlists/SinglyLinkedList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastructures/linkedlists/SinglyLinkedList.java b/src/datastructures/linkedlists/SinglyLinkedList.java
index b0bfc51..6633941 100644
--- a/src/datastructures/linkedlists/SinglyLinkedList.java
+++ b/src/datastructures/linkedlists/SinglyLinkedList.java
@@ -26,7 +26,7 @@ package datastructures.linkedlists;
* singly linked list only stores nodes with
* references to the following node. It also stores
* two refence nodes, the first node in the list,
- * and the last node in the list. The implemention
+ * 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 implemented