summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-10-03 14:10:03 -0700
committerPaul Phillips <paulp@improving.org>2012-10-03 14:10:03 -0700
commit3ffc62b49914c6bf466f0f5e10c8f34b2cff5899 (patch)
tree810e3308ea9bdb5168a729cca9ff5c52f74787ef
parent5132659241e25b7695b3203fe0bc5c81c17b65d3 (diff)
parent968f492aa1225f0a7786396a97749ef967ad898f (diff)
downloadscala-3ffc62b49914c6bf466f0f5e10c8f34b2cff5899.tar.gz
scala-3ffc62b49914c6bf466f0f5e10c8f34b2cff5899.tar.bz2
scala-3ffc62b49914c6bf466f0f5e10c8f34b2cff5899.zip
Merge pull request #1453 from vigdorchik/links_fixed
Fix scaladoc links in a couple of places.
-rw-r--r--src/library/scala/collection/Searching.scala4
-rw-r--r--src/library/scala/collection/generic/IsSeqLike.scala2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/library/scala/collection/Searching.scala b/src/library/scala/collection/Searching.scala
index c1f7f4cae6..33e50365ee 100644
--- a/src/library/scala/collection/Searching.scala
+++ b/src/library/scala/collection/Searching.scala
@@ -39,7 +39,7 @@ object Searching {
* The sequence should be sorted with the same `Ordering` before calling; otherwise,
* the results are undefined.
*
- * @see [[scala.math.IndexedSeq]]
+ * @see [[scala.collection.IndexedSeq]]
* @see [[scala.math.Ordering]]
* @see [[scala.collection.SeqLike]], method `sorted`
*
@@ -63,7 +63,7 @@ object Searching {
* The sequence should be sorted with the same `Ordering` before calling; otherwise,
* the results are undefined.
*
- * @see [[scala.math.IndexedSeq]]
+ * @see [[scala.collection.IndexedSeq]]
* @see [[scala.math.Ordering]]
* @see [[scala.collection.SeqLike]], method `sorted`
*
diff --git a/src/library/scala/collection/generic/IsSeqLike.scala b/src/library/scala/collection/generic/IsSeqLike.scala
index 8eac025ed6..9467510a2c 100644
--- a/src/library/scala/collection/generic/IsSeqLike.scala
+++ b/src/library/scala/collection/generic/IsSeqLike.scala
@@ -30,7 +30,7 @@ package generic
* // == List(2, 4)
* }}}
*
- * @see [[scala.collection.generic.Seq]]
+ * @see [[scala.collection.Seq]]
* @see [[scala.collection.generic.IsTraversableLike]]
*/
trait IsSeqLike[Repr] {