summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-02-06 17:15:34 +0000
committermihaylov <mihaylov@epfl.ch>2007-02-06 17:15:34 +0000
commit31365c2ab0eaaaf47053f10bace58f614e54e6c8 (patch)
tree2853b549702d1d5f84adfabe89635ba76e76490b /src/library
parent658bc3c447a78dc1e156036710aa3b0f79ddef1b (diff)
downloadscala-31365c2ab0eaaaf47053f10bace58f614e54e6c8.tar.gz
scala-31365c2ab0eaaaf47053f10bace58f614e54e6c8.tar.bz2
scala-31365c2ab0eaaaf47053f10bace58f614e54e6c8.zip
Fixed references to the deprecated ListMap.Empty
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/immutable/ListMap.scala2
-rw-r--r--src/library/scala/collection/immutable/ListSet.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/immutable/ListMap.scala b/src/library/scala/collection/immutable/ListMap.scala
index 006bf9d49f..4ce9c4cc39 100644
--- a/src/library/scala/collection/immutable/ListMap.scala
+++ b/src/library/scala/collection/immutable/ListMap.scala
@@ -30,7 +30,7 @@ object ListMap {
/** This class implements immutable maps using a list-based data
* structure. Instances of <code>ListMap</code> represent
* empty maps; they can be either created by calling the constructor
- * directly, or by applying the function <code>ListMap.Empty</code>.
+ * directly, or by applying the function <code>ListMap.empty</code>.
*
* @author Matthias Zenger
* @author Martin Oderskty
diff --git a/src/library/scala/collection/immutable/ListSet.scala b/src/library/scala/collection/immutable/ListSet.scala
index 42d627426e..e869e6258d 100644
--- a/src/library/scala/collection/immutable/ListSet.scala
+++ b/src/library/scala/collection/immutable/ListSet.scala
@@ -34,7 +34,7 @@ object ListSet {
/** This class implements immutable sets using a list-based data
* structure. Instances of <code>ListSet</code> represent
* empty sets; they can be either created by calling the constructor
- * directly, or by applying the function <code>ListSet.Empty</code>.
+ * directly, or by applying the function <code>ListSet.empty</code>.
*
* @author Matthias Zenger
* @version 1.0, 09/07/2003