Skip to content

Commit

Permalink
Merge pull request #561 from notmatt/mbs-fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoko authored Oct 14, 2020
2 parents e6bde22 + 472d859 commit f38f42f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/primitive_types/primitive_types6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#[test]
fn indexing_tuple() {
let numbers = (1, 2, 3);
/// Replace below ??? with the tuple indexing syntax.
// Replace below ??? with the tuple indexing syntax.
let second = ???;

assert_eq!(2, second
assert_eq!(2, second,
"This is not the 2nd number in the tuple!")
}

0 comments on commit f38f42f

Please sign in to comment.