diff options
author | Sergey <s.gaykov@yandex.ru> | 2014-11-01 22:32:51 +0300 |
---|---|---|
committer | Sergey <s.gaykov@yandex.ru> | 2014-11-01 22:32:51 +0300 |
commit | 494d97c4ee624f384ce771bc06f14d53ffecfca9 (patch) | |
tree | 8f9a460a4d8676cf49e190f37ca7be006f39155e | |
parent | 3a12532da9d2b76adb960ece6d610bdc4099a57d (diff) |
[Java] Maps description little fix.
-rw-r--r-- | java.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown index 478d85d6..f08c4679 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -126,7 +126,7 @@ public class LearnJava { // LinkedLists - Implementation of doubly-linked list. All of the // operations perform as could be expected for // a doubly-linked list. - // Maps - An objects that maps keys to values. A map cannot contain + // Maps - A set of objects that maps keys to values. A map cannot contain // duplicate keys; each key can map to at most one value. // HashMaps - This class uses a hashtable to implement the Map interface. // This allows the execution time of basic operations, |