aboutsummaryrefslogtreecommitdiffstats
path: root/src/datastructures/linkedlists/SinglyLinkedList.java
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-22 12:05:42 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-22 12:05:42 +0100
commit50426f1c2c20b10bec70ba4cf9980ffb5d5be9a7 (patch)
tree6b48f929ae7a755aaa67a6f68fef6be6433d9415 /src/datastructures/linkedlists/SinglyLinkedList.java
parentadd tailless doubly linked list (diff)
downloadalgorithms-and-data-structures-50426f1c2c20b10bec70ba4cf9980ffb5d5be9a7.tar.gz
algorithms-and-data-structures-50426f1c2c20b10bec70ba4cf9980ffb5d5be9a7.tar.bz2
algorithms-and-data-structures-50426f1c2c20b10bec70ba4cf9980ffb5d5be9a7.tar.xz
m doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/datastructures/linkedlists/SinglyLinkedList.java')
-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