From 3b1066054dd0bc5d87724c38d2428400cf371767 Mon Sep 17 00:00:00 2001 From: Arman Bilge Date: Wed, 27 Oct 2021 19:48:05 -0700 Subject: [PATCH] Fix typos in `Tuple` docs --- library/src/scala/Tuple.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/src/scala/Tuple.scala b/library/src/scala/Tuple.scala index 06d258e3e503..c509551ef12e 100644 --- a/library/src/scala/Tuple.scala +++ b/library/src/scala/Tuple.scala @@ -8,16 +8,16 @@ import compiletime.ops.int._ sealed trait Tuple extends Product { import Tuple._ - /** Create a copy this tuple as an Array */ + /** Create a copy of this tuple as an Array */ inline def toArray: Array[Object] = runtime.Tuples.toArray(this) - /** Create a copy this tuple as a List */ + /** Create a copy of this tuple as a List */ inline def toList: List[Union[this.type]] = this.productIterator.toList .asInstanceOf[List[Union[this.type]]] - /** Create a copy this tuple as an IArray */ + /** Create a copy of this tuple as an IArray */ inline def toIArray: IArray[Object] = runtime.Tuples.toIArray(this)