We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 284e6e8 + 3eb9da3 commit 9927bc0Copy full SHA for 9927bc0
src/primitives/tuples.md
@@ -35,7 +35,7 @@ fn main() {
35
// Tuples are printable
36
println!("tuple of tuples: {:?}", tuple_of_tuples);
37
38
- // But long Tuples cannot be printed
+ // But long Tuples (more than 12 elements) cannot be printed
39
// let too_long_tuple = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13);
40
// println!("too long tuple: {:?}", too_long_tuple);
41
// TODO ^ Uncomment the above 2 lines to see the compiler error
0 commit comments