summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-10-31 23:41:21 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2011-10-31 23:41:21 +0000
commit0ba09556cde0ad7758b3cb75c462d53854aeb2f3 (patch)
tree07f11c2b4e3573e5f34e813e3e092133e7364c9e /src/library
parentc0407608be3bd40e99dd2d86df6efb2446b1c1cd (diff)
downloadscala-0ba09556cde0ad7758b3cb75c462d53854aeb2f3.tar.gz
scala-0ba09556cde0ad7758b3cb75c462d53854aeb2f3.tar.bz2
scala-0ba09556cde0ad7758b3cb75c462d53854aeb2f3.zip
Fix doc comment. no review
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/generic/GenericTraversableTemplate.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/library/scala/collection/generic/GenericTraversableTemplate.scala b/src/library/scala/collection/generic/GenericTraversableTemplate.scala
index a1b10dc9e3..10cd3b5755 100644
--- a/src/library/scala/collection/generic/GenericTraversableTemplate.scala
+++ b/src/library/scala/collection/generic/GenericTraversableTemplate.scala
@@ -94,13 +94,13 @@ trait GenericTraversableTemplate[+A, +CC[X] <: GenTraversable[X]] extends HasNew
/** Converts this $coll of triples into three collections of the first, second,
* and third element of each triple.
*
- * @param A1 the type of the first member of the element triples
- * @param A2 the type of the second member of the element triples
- * @param A3 the type of the third member of the element triples
- * @param asPair an implicit conversion which asserts that the element type
- * of this $coll is a triple.
- * @return a triple ${coll}s, containing the first, second, respectively
- * third member of each element triple of this $coll.
+ * @param A1 the type of the first member of the element triples
+ * @param A2 the type of the second member of the element triples
+ * @param A3 the type of the third member of the element triples
+ * @param asTriple an implicit conversion which asserts that the element type
+ * of this $coll is a triple.
+ * @return a triple ${coll}s, containing the first, second, respectively
+ * third member of each element triple of this $coll.
*/
def unzip3[A1, A2, A3](implicit asTriple: A => (A1, A2, A3)): (CC[A1], CC[A2], CC[A3]) = {
val b1 = genericBuilder[A1]