Skip to content

Commit 9927bc0

Browse files
authored
Merge pull request #1524 from cdvv7788/patch-1
Update tuples.md
2 parents 284e6e8 + 3eb9da3 commit 9927bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/primitives/tuples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fn main() {
3535
// Tuples are printable
3636
println!("tuple of tuples: {:?}", tuple_of_tuples);
3737
38-
// But long Tuples cannot be printed
38+
// But long Tuples (more than 12 elements) cannot be printed
3939
// let too_long_tuple = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13);
4040
// println!("too long tuple: {:?}", too_long_tuple);
4141
// TODO ^ Uncomment the above 2 lines to see the compiler error

0 commit comments

Comments
 (0)