diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-01-24 13:00:40 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-01-24 13:00:40 +0100 |
commit | 301ffb83c85452c53aea91c07ef0325f38c8863b (patch) | |
tree | de229ebcad3f7d4afe317b4c0b8d27735085c018 | |
parent | add linked list to association list converter (diff) | |
download | algorithms-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.java | 2 |
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 |