summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2015-10-14 18:29:03 +0200
committerSeth Tisue <seth@tisue.net>2015-10-14 18:29:03 +0200
commit14f875c8c9400fbd929de395881d2210165f8b8c (patch)
tree87ba126010948802173ede768f198f84b290966e /src
parent68ce049c7a99f7c538d702182b46877806f54596 (diff)
parent42acd55bf9aba878254849c3d07ab78f3bcd2f3d (diff)
downloadscala-14f875c8c9400fbd929de395881d2210165f8b8c.tar.gz
scala-14f875c8c9400fbd929de395881d2210165f8b8c.tar.bz2
scala-14f875c8c9400fbd929de395881d2210165f8b8c.zip
Merge pull request #4788 from dk14/patch-1
explicitly specify insertion-order feature in docs
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/immutable/ListMap.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/immutable/ListMap.scala b/src/library/scala/collection/immutable/ListMap.scala
index 7c40e84280..1eedf93269 100644
--- a/src/library/scala/collection/immutable/ListMap.scala
+++ b/src/library/scala/collection/immutable/ListMap.scala
@@ -32,7 +32,7 @@ object ListMap extends ImmutableMapFactory[ListMap] {
private object EmptyListMap extends ListMap[Any, Nothing] { }
}
-/** This class implements immutable maps using a list-based data structure.
+/** This class implements immutable maps using a list-based data structure, which preserves insertion order.
* Instances of `ListMap` represent empty maps; they can be either created by
* calling the constructor directly, or by applying the function `ListMap.empty`.
*