summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
Diffstat (limited to 'src/library')
-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] {