summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/generic/MapFactory.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/generic/MapFactory.scala')
-rw-r--r--src/library/scala/collection/generic/MapFactory.scala14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/library/scala/collection/generic/MapFactory.scala b/src/library/scala/collection/generic/MapFactory.scala
index 067f22dbf1..32916933ac 100644
--- a/src/library/scala/collection/generic/MapFactory.scala
+++ b/src/library/scala/collection/generic/MapFactory.scala
@@ -1,6 +1,18 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2003-2009, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id$
+
+
package scala.collection.generic
-/** A template for companion objects of mutable.Map and subclasses thereof.
+/** A template for companion objects of <code>mutable.Map</code> and
+ * subclasses thereof.
*/
abstract class MapFactory[CC[A, B] <: Map[A, B] with MapTemplate[A, B, CC[A, B]]] {