summaryrefslogtreecommitdiff
path: root/src/library/scala/Tuple2.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-30 21:00:08 +0000
committerPaul Phillips <paulp@improving.org>2011-03-30 21:00:08 +0000
commit96965c4459c318afd97b4024f8509a5c4988a3d0 (patch)
treef9f807a31c597d448e1ea1240ece35f49b5af658 /src/library/scala/Tuple2.scala
parent386d5068471809d906d3db3aa56ed5f9352250c2 (diff)
downloadscala-96965c4459c318afd97b4024f8509a5c4988a3d0.tar.gz
scala-96965c4459c318afd97b4024f8509a5c4988a3d0.tar.bz2
scala-96965c4459c318afd97b4024f8509a5c4988a3d0.zip
Addressing most of the warnings revealed by the...
Addressing most of the warnings revealed by the patch to warn about unknown scaladoc variables. Updated and reran genprod. No review.
Diffstat (limited to 'src/library/scala/Tuple2.scala')
-rw-r--r--src/library/scala/Tuple2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/Tuple2.scala b/src/library/scala/Tuple2.scala
index fc9b348fdb..afac96fe97 100644
--- a/src/library/scala/Tuple2.scala
+++ b/src/library/scala/Tuple2.scala
@@ -49,7 +49,7 @@ case class Tuple2[@specialized(Int, Long, Double) +T1, @specialized(Int, Long, D
* }}}
*
* @see Zipped
- * $willNotTerminateInf
+ * Note: will not terminate for infinite-sized collections.
*/
def zipped[Repr1, El1, Repr2, El2](implicit w1: T1 => TLike[El1, Repr1], w2: T2 => ILike[El2, Repr2]): Zipped[Repr1, El1, Repr2, El2]
= new Zipped[Repr1, El1, Repr2, El2](_1, _2)