summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/TraversableViewLike.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/collection/TraversableViewLike.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/collection/TraversableViewLike.scala')
-rw-r--r--src/library/scala/collection/TraversableViewLike.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/library/scala/collection/TraversableViewLike.scala b/src/library/scala/collection/TraversableViewLike.scala
index 6f7f7f5a28..b5b18b7a8a 100644
--- a/src/library/scala/collection/TraversableViewLike.scala
+++ b/src/library/scala/collection/TraversableViewLike.scala
@@ -30,7 +30,7 @@ trait ViewMkString[+A] {
}
/** A template trait for non-strict views of traversable collections.
- * $traversableviewinfo
+ * $traversableViewInfo
*
* Implementation note: Methods such as `map` or `flatMap` on this view will not invoke the implicitly passed
* `Builder` factory, but will return a new view directly, to preserve by-name behavior.
@@ -38,14 +38,14 @@ trait ViewMkString[+A] {
* that takes a `View` as its `From` type parameter must yield the same view (or a generic
* superclass of it) as its result parameter. If that assumption is broken, cast errors might result.
*
- * @define viewinfo
+ * @define viewInfo
* A view is a lazy version of some collection. Collection transformers such as
* `map` or `filter` or `++` do not traverse any elements when applied on a view.
* Instead they create a new view which simply records that fact that the operation
* needs to be applied. The collection elements are accessed, and the view operations are applied,
* when a non-view result is needed, or when the `force` method is called on a view.
- * @define traversableviewinfo
- * $viewinfo
+ * @define traversableViewInfo
+ * $viewInfo
*
* All views for traversable collections are defined by creating a new `foreach` method.