summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/generic
diff options
context:
space:
mode:
authorAntoine Gourlay <antoine@gourlay.fr>2014-11-05 11:15:26 +0100
committerAntoine Gourlay <antoine@gourlay.fr>2014-11-05 14:44:51 +0100
commit9d0d44c8f87bfd227d4da08aec970c4d29461705 (patch)
tree2517496c81dbd3bfd8f8ed95b8ef775a72e5f224 /src/library/scala/collection/generic
parent315f58f5fb7241966e218e13c9b26aea8eede56e (diff)
downloadscala-9d0d44c8f87bfd227d4da08aec970c4d29461705.tar.gz
scala-9d0d44c8f87bfd227d4da08aec970c4d29461705.tar.bz2
scala-9d0d44c8f87bfd227d4da08aec970c4d29461705.zip
cleanup @throws tags in library and reflect
- there is no need for explicit links with [[ and ]] - there is no need for explicit backquoting
Diffstat (limited to 'src/library/scala/collection/generic')
-rw-r--r--src/library/scala/collection/generic/GenericTraversableTemplate.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/generic/GenericTraversableTemplate.scala b/src/library/scala/collection/generic/GenericTraversableTemplate.scala
index cd48cd23f4..64cf1cfb1e 100644
--- a/src/library/scala/collection/generic/GenericTraversableTemplate.scala
+++ b/src/library/scala/collection/generic/GenericTraversableTemplate.scala
@@ -45,7 +45,7 @@ trait GenericTraversableTemplate[+A, +CC[X] <: GenTraversable[X]] extends HasNew
/** Selects the first element of this $coll.
*
* @return the first element of this $coll.
- * @throws `NoSuchElementException` if the $coll is empty.
+ * @throws NoSuchElementException if the $coll is empty.
*/
def head: A
@@ -202,7 +202,7 @@ trait GenericTraversableTemplate[+A, +CC[X] <: GenTraversable[X]] extends HasNew
* element type of this $coll is a `Traversable`.
* @return a two-dimensional $coll of ${coll}s which has as ''n''th row
* the ''n''th column of this $coll.
- * @throws `IllegalArgumentException` if all collections in this $coll
+ * @throws IllegalArgumentException if all collections in this $coll
* are not of the same size.
*/
@migration("`transpose` throws an `IllegalArgumentException` if collections are not uniformly sized.", "2.9.0")