summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-09-11 22:03:14 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-09-11 22:03:14 +0100
commit340e44e9e6f954de127ee73a2ff3683e3b4b02e0 (patch)
tree8b15d9dd00b2e27efe68d7ba7f1ab79716113bd2 /src
parent7ec4207a2fa84e7a35f514a911893b7e3cb57672 (diff)
downloadscala-340e44e9e6f954de127ee73a2ff3683e3b4b02e0.tar.gz
scala-340e44e9e6f954de127ee73a2ff3683e3b4b02e0.tar.bz2
scala-340e44e9e6f954de127ee73a2ff3683e3b4b02e0.zip
Restore missing element type to List class documentation
See line 18, git show cb1c0c src/library/scala/collection/immutable/List.scala|head -20|cat -n This shows the type reference prior to removal.
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/collection/immutable/List.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/immutable/List.scala b/src/library/scala/collection/immutable/List.scala
index 82e38d3549..53146bd66d 100644
--- a/src/library/scala/collection/immutable/List.scala
+++ b/src/library/scala/collection/immutable/List.scala
@@ -16,7 +16,7 @@ import scala.annotation.tailrec
import java.io._
/** A class for immutable linked lists representing ordered collections
- * of elements of type.
+ * of elements of type `A`.
*
* This class comes with two implementing case classes `scala.Nil`
* and `scala.::` that implement the abstract members `isEmpty`,