summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/generic/SetFactory.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/collection/generic/SetFactory.scala')
-rw-r--r--src/library/scala/collection/generic/SetFactory.scala14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/library/scala/collection/generic/SetFactory.scala b/src/library/scala/collection/generic/SetFactory.scala
index 72774e659b..aeaf5edc2c 100644
--- a/src/library/scala/collection/generic/SetFactory.scala
+++ b/src/library/scala/collection/generic/SetFactory.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 Map and subclasses thereof.
+/** A template for companion objects of <code>Map</code> and subclasses
+ * thereof.
*/
abstract class SetFactory[CC[X] <: Set[X] with SetTemplate[X, CC[X]]]
extends Companion[CC] {