diff --git a/src/primitives/tuples.md b/src/primitives/tuples.md index 82f4083fc9..3469c08943 100644 --- a/src/primitives/tuples.md +++ b/src/primitives/tuples.md @@ -35,7 +35,7 @@ fn main() { // Tuples are printable println!("tuple of tuples: {:?}", tuple_of_tuples); - // But long Tuples cannot be printed + // But long Tuples (more than 12 elements) cannot be printed // let too_long_tuple = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13); // println!("too long tuple: {:?}", too_long_tuple); // TODO ^ Uncomment the above 2 lines to see the compiler error