From ea112411630a49c9815bbd79f5677394c20b1c18 Mon Sep 17 00:00:00 2001 From: Vaastav Arora Date: Tue, 1 Jun 2021 17:23:48 -0400 Subject: [PATCH] Comment Typo Fix in Concat --- library/src/scala/Tuple.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {