Skip to content

Commit adcbfd0

Browse files
Merge pull request #13839 from armanbilge/patch-1
Fix typos in `Tuple` docs
2 parents 6ba44ae + 6b9f034 commit adcbfd0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/src/scala/Tuple.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ import compiletime.ops.int._
88
sealed trait Tuple extends Product {
99
import Tuple._
1010

11-
/** Create a copy this tuple as an Array */
11+
/** Create a copy of this tuple as an Array */
1212
inline def toArray: Array[Object] =
1313
runtime.Tuples.toArray(this)
1414

15-
/** Create a copy this tuple as a List */
15+
/** Create a copy of this tuple as a List */
1616
inline def toList: List[Union[this.type]] =
1717
this.productIterator.toList
1818
.asInstanceOf[List[Union[this.type]]]
1919

20-
/** Create a copy this tuple as an IArray */
20+
/** Create a copy of this tuple as an IArray */
2121
inline def toIArray: IArray[Object] =
2222
runtime.Tuples.toIArray(this)
2323

0 commit comments

Comments
 (0)