aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-24 13:00:40 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-24 13:00:40 +0100
commit301ffb83c85452c53aea91c07ef0325f38c8863b (patch)
treede229ebcad3f7d4afe317b4c0b8d27735085c018
parentadd linked list to association list converter (diff)
downloadalgorithms-and-data-structures-301ffb83c85452c53aea91c07ef0325f38c8863b.tar.gz
algorithms-and-data-structures-301ffb83c85452c53aea91c07ef0325f38c8863b.tar.bz2
algorithms-and-data-structures-301ffb83c85452c53aea91c07ef0325f38c8863b.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--src/datastructures/linkedlists/Association.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastructures/linkedlists/Association.java b/src/datastructures/linkedlists/Association.java
index 3ccf360..a4f93b6 100644
--- a/src/datastructures/linkedlists/Association.java
+++ b/src/datastructures/linkedlists/Association.java
@@ -19,7 +19,7 @@ package datastructures.linkedlists;
/**
* Value type that can be stored in linked lists
- * to turn them in to association lists.
+ * to turn them into association lists.
*
* @param <K> The type of the key of the node
* @param <V> The type of the value associated with the key