diff --git a/library/src/scala/Tuple.scala b/library/src/scala/Tuple.scala index 5e69db4fc5af..418c58fdd040 100644 --- a/library/src/scala/Tuple.scala +++ b/library/src/scala/Tuple.scala @@ -93,7 +93,7 @@ object Tuple { case x1 *: xs1 => x1 *: Concat[xs1, Y] } - /** Type of the element a position N in the tuple X */ + /** Type of the element at position N in the tuple X */ type Elem[X <: Tuple, N <: Int] = X match { case x *: xs => N match {