Skip to content

Commit

Permalink
fix(doc): scala tuple size desc (#251)
Browse files Browse the repository at this point in the history
closes #250
  • Loading branch information
j-mie6 authored Jan 7, 2025
2 parents 5712969 + 1bc50fd commit cca7b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api-guide/generic.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ be constructed from the results. However, it may also be desirable to override t
*templated* `apply` to perform additional checks. This basically means that you
can add in a `filter`-like combinator after the data has been constructed to validate
that the thing you've constructed is actually correct. As an example, it turns out that
Scala only allows tuples with a maximum of 22 elements:
Scala 2 only allows tuples with a maximum of 22 elements:

```scala mdoc:fail
val oops = (1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3)
Expand Down

0 comments on commit cca7b43

Please sign in to comment.