Skip to content

Commit f38f42f

Browse files
author
fmoko
authored
Merge pull request rust-lang#561 from notmatt/mbs-fixups
2 parents e6bde22 + 472d859 commit f38f42f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/primitive_types/primitive_types6.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#[test]
99
fn indexing_tuple() {
1010
let numbers = (1, 2, 3);
11-
/// Replace below ??? with the tuple indexing syntax.
11+
// Replace below ??? with the tuple indexing syntax.
1212
let second = ???;
1313

14-
assert_eq!(2, second
14+
assert_eq!(2, second,
1515
"This is not the 2nd number in the tuple!")
1616
}

0 commit comments

Comments
 (0)