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 e6bde22 + 472d859 commit f38f42fCopy full SHA for f38f42f
exercises/primitive_types/primitive_types6.rs
@@ -8,9 +8,9 @@
8
#[test]
9
fn indexing_tuple() {
10
let numbers = (1, 2, 3);
11
- /// Replace below ??? with the tuple indexing syntax.
+ // Replace below ??? with the tuple indexing syntax.
12
let second = ???;
13
14
- assert_eq!(2, second
+ assert_eq!(2, second,
15
"This is not the 2nd number in the tuple!")
16
}
0 commit comments