Skip to content

Commit

Permalink
Merge pull request rust-lang#561 from notmatt/mbs-fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
yourname committed Oct 14, 2020
2 parents fea63d8 + cbd1471 commit cd99cd8
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 cd99cd8

Please sign in to comment.